1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-02 23:43:01 +03:00
juvix/tests/negative/MissingArgument.juvix

8 lines
93 B
Plaintext
Raw Normal View History

module MissingArgument;
type T := t : T;
f (a : T) (b : T) : T := t;
x : T := f (b := t);