ref: f9424ba979aaabce0a328e31b3f6a6730679a5e6
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