mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 01:52:11 +03:00
11 lines
123 B
Plaintext
11 lines
123 B
Plaintext
module IdInType;
|
|
|
|
type Unit :=
|
|
| unit : Unit;
|
|
|
|
id : {a : Type} -> a -> a
|
|
| a := a;
|
|
|
|
f : id Unit -> Unit
|
|
| _ := unit;
|