Idris2/tests/idris2/operators/operators004/Test.idr
André Videla 75032a7164
Emit warning for fixities with no export modifiers (#3234)
* Emit warning for fixities with no export modifiers

This is to help update all the existing code to program with explicit
fixity export directives in preparation for the behavioral change where
they will become private by default.
2024-04-03 15:41:57 +01:00

17 lines
210 B
Idris

private infix 5 -:-
private infix 5 :-:
(-:-) : a -> List a -> List a
(-:-) = (::)
(:-:) : a -> List a -> List a
(:-:) = (::)
test : List Nat
test = 4 -:- 3 :-: []
test2 : List Nat
test2 = 4 :-: 3 -:- []