You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#lang typed/racket/base
(define-type A B)
(define-type B (Union A Symbol))
(: a1 A)
(define a1 'a)
(: a2 A)
(define a2 123)
(: a3 Symbol)
(define a3 a2)