Idris2/tests/idris2/operators/operators009/expected
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

12 lines
362 B
Plaintext

1/1: Building Test (Test.idr)
Warning: Fixity declaration 'infixr 0 =@' does not have an export modifier, and
will become private by default in a future version.
To expose it outside of its module, write 'export regular infixr 0 =@'. If you
intend to keep it private, write 'private regular infixr 0 =@'.
Test:2:1--2:12
1 |
2 | infixr 0 =@
^^^^^^^^^^^