1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-04 17:07:28 +03:00
juvix/tests/positive/issue3048/main.juvix
2024-10-25 15:11:19 +02:00

17 lines
229 B
Plaintext

module main;
import Other;
type Tree (A : Type) :=
node (Tree A)
(Tree A)
(Tree A)
(Tree A)
(Tree A)
(Tree A)
(Tree A)
(Tree A)
(Tree A);
type Foo := mkFoo (Tree Foo);