mirror of
https://github.com/anoma/juvix.git
synced 2024-12-01 08:42:31 +03:00
9 lines
95 B
Plaintext
9 lines
95 B
Plaintext
|
module LhsTooManyPatterns;
|
||
|
inductive T {
|
||
|
A : T;
|
||
|
};
|
||
|
|
||
|
f : T → T;
|
||
|
f A x ≔ A;
|
||
|
end;
|