ref: 08a727c87c4c642bfc3c609c295369f9d70c0d62
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