1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-01 08:42:31 +03:00
juvix/tests/negative/Internal/LhsTooManyPatterns.juvix

9 lines
94 B
Plaintext
Raw Normal View History

module LhsTooManyPatterns;
inductive T {
A : T;
};
f : T → T;
f A x := A;
end;