ref: 8681ea7f41031e95eba880baf934d743cb558758
dir: /tests/LocalFix.hs/
module LocalFix where main :: IO () main = do let (.-) :: Int -> Int -> Int (.-) = (-) x = 1 .- 2 .- 3 print x let infixr .- (.-) :: Int -> Int -> Int (.-) = (-) x = 1 .- 2 .- 3 print x