mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +03:00
9 lines
142 B
Idris
9 lines
142 B
Idris
|
|
typebind infixr 0 =@
|
|
|
|
0 (=@) : (a : Type) -> (a -> Type) -> Type
|
|
(=@) a f = (1 x : a) -> f x
|
|
|
|
wrongId : {0 a : Type} -> a =@ a
|
|
wrongId x = x
|