mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 23:43:01 +03:00
7 lines
64 B
Plaintext
7 lines
64 B
Plaintext
|
module NestedAsPatterns;
|
||
|
|
||
|
f : Type -> Type;
|
||
|
f a@b@_ := a;
|
||
|
|
||
|
end;
|