private typebind infixr 0 =@ 0 (=@) : (a : Type) -> (a -> Type) -> Type (=@) a f = (1 x : a) -> f x data S : {ty : Type} -> (x : ty) -> Type where MkS : (x : ty) =@ S x wrongId : {0 a : Type} -> a =@ a wrongId x = x