haskell-tools-refactor-1.0.1.1: examples/Decl/LocalBindings.hs
module Decl.LocalBindings where
f x = g x
where g :: Int -> Int
g = id
f' x | even x = g x
where g :: Int -> Int
g = idmodule Decl.LocalBindings where
f x = g x
where g :: Int -> Int
g = id
f' x | even x = g x
where g :: Int -> Int
g = id