haskell-tools-refactor-1.0.1.1: 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