haskell-tools-refactor-1.0.1.1: examples/Decl/LocalFixity.hs
module Decl.LocalFixity where
x = 1 `f` 2
where f :: Int -> Int -> Int
f a b = a + b
infixl 6 `f`
module Decl.LocalFixity where
x = 1 `f` 2
where f :: Int -> Int -> Int
f a b = a + b
infixl 6 `f`