Hardcode two more operator precedences

ghc92
Lennart Spitzner 2023-06-21 17:18:23 +02:00
parent 9737cb3adc
commit d3d3b90558
1 changed files with 4 additions and 0 deletions

View File

@ -400,6 +400,10 @@ hardcodedFixity allowUnqualify = \case
"::-" -> fixity InfixN 0
"&!" -> fixity InfixL 1
-- extra
"||^" -> fixity InfixL 9
"&&^" -> fixity InfixL 9
-- quickcheck (-state-machine)
":&&" -> fixity InfixL 9
":||" -> fixity InfixL 9