1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-11 08:25:46 +03:00
juvix/tests/negative/Internal/WrongConstructorArity.juvix

8 lines
89 B
Plaintext
Raw Normal View History

module WrongConstructorArity;
type T :=
| A : T → T;
f : T → T
| (A i x) := i;