mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-29 22:51:51 +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
|