1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-02 23:43:01 +03:00
juvix/tests/negative/InfixErrorP.mjuvix
2022-02-16 15:18:08 +01:00

12 lines
139 B
Plaintext

module InfixErrorP;
infix 5 , ;
inductive Pair {
, : Type → Type → Pair
};
fst : Pair → Type;
fst (x , ) ≔ x;
end;