ref: 01e3ea89201c49757154ce04c475a95b0040d3df
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