1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-02 23:43:01 +03:00
juvix/tests/positive/InductivePipes.juvix

10 lines
104 B
Plaintext

module InductivePipes;
type T := | t : T;
type T2 :=
| t1 : T2
| t2 : T2
| t3 : T2;
end ;