haskell-tools-builtin-refactorings-1.0.0.0: 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