haskell-tools-refactor-0.4.1.2: examples/Decl/LocalBindingInDo.hs
module Decl.LocalBindingInDo where
x :: Maybe ()
x = do let y = f a
where a = ()
return y
where f = idmodule Decl.LocalBindingInDo where
x :: Maybe ()
x = do let y = f a
where a = ()
return y
where f = id