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