ref: 30ed73a98df14cb18296e7d2178227e6392a8ff7
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