1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 10:03:22 +03:00
juvix/tests/positive/Inductive.mjuvix
2022-02-18 13:01:42 +01:00

6 lines
56 B
Plaintext

module Inductive;
inductive T {
t : T;
};
end ;