mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 23:43:01 +03:00
8 lines
93 B
Plaintext
8 lines
93 B
Plaintext
|
module MissingArgument;
|
||
|
|
||
|
type T := t : T;
|
||
|
|
||
|
f (a : T) (b : T) : T := t;
|
||
|
|
||
|
x : T := f (b := t);
|