mirror of
https://github.com/anoma/juvix.git
synced 2025-01-08 16:51:53 +03:00
2baad15a41
* Enables new function syntax in local let-declarations * Closes #2251
7 lines
63 B
Plaintext
7 lines
63 B
Plaintext
module NestedAsPatterns;
|
|
|
|
f : Type -> Type
|
|
| a@b@_ := a;
|
|
|
|
end;
|