1
1
mirror of https://github.com/anoma/juvix.git synced 2024-09-19 04:27:20 +03:00
juvix/tests/positive/Inductive.mjuvix
2022-04-04 17:44:08 +02:00

7 lines
57 B
Plaintext

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