1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-02 23:43:01 +03:00
juvix/tests/negative/DuplicateFixity.mjuvix
2022-04-04 17:44:08 +02:00

9 lines
96 B
Plaintext

module DuplicateFixity;
infixl 3 +;
infixl 3 +;
axiom + : Type → Type → Type;
end;