mirror of
https://github.com/anoma/juvix.git
synced 2024-12-01 00:04:58 +03:00
6bfe727a0e
* Closes #2007
12 lines
138 B
Plaintext
12 lines
138 B
Plaintext
module InfixErrorP;
|
|
|
|
syntax infix 5 , ;
|
|
|
|
type Pair :=
|
|
, : Type → Type → Pair;
|
|
|
|
fst : Pair → Type;
|
|
fst (x , ) := x;
|
|
|
|
end;
|