Idris2/tests/idris2/operators/operators003/expected

37 lines
903 B
Plaintext
Raw Normal View History

2023-12-12 18:23:50 +03:00
1/1: Building Error1 (Error1.idr)
2023-12-15 00:34:16 +03:00
Error: Invalid fixity, typebind operator must be infixr 0.
2023-12-12 18:23:50 +03:00
Error1:3:10--3:21
1 | module Error1
2 |
3 | typebind infixl 0 =@
^^^^^^^^^^^
Possible solutions:
2023-12-15 00:34:16 +03:00
- Make it `infixr 0`: `typebind infixr 0 =@`
- Remove the binding keyword: `infixl 0 =@`
1/1: Building Error2 (Error2.idr)
Error: Invalid fixity, typebind operator must be infixr 0.
2023-12-12 18:23:50 +03:00
Error2:3:10--3:21
1 | module Error2
2 |
3 | typebind infixr 3 =@
^^^^^^^^^^^
Possible solutions:
2023-12-15 00:34:16 +03:00
- Make it `infixr 0`: `typebind infixr 0 =@`
- Remove the binding keyword: `infixr 3 =@`
1/1: Building Error3 (Error3.idr)
Error: Invalid fixity, typebind operator must be infixr 0.
2023-12-12 18:23:50 +03:00
Error3:3:10--3:21
1 | module Error3
2 |
3 | typebind infixl 3 =@
^^^^^^^^^^^
2023-12-15 00:34:16 +03:00
Possible solutions:
- Make it `infixr 0`: `typebind infixr 0 =@`
- Remove the binding keyword: `infixl 3 =@`