1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 01:52:11 +03:00
juvix/tests/positive/IdInType.juvix
2023-07-11 17:22:07 +02:00

11 lines
123 B
Plaintext

module IdInType;
type Unit :=
| unit : Unit;
id : {a : Type} -> a -> a
| a := a;
f : id Unit -> Unit
| _ := unit;