ref: 63b1cd19101d0f5f566abdd67f305cc4e198e370
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