haskell-tools-builtin-refactorings-1.1.1.0: examples/Refactor/ExtractBinding/GuardsIndent_res.hs
module Refactor.ExtractBinding.GuardsIndent where fn xs | length xs == 2 = "2" | length xs == 3 = test | otherwise = "other" where test = "3"
module Refactor.ExtractBinding.GuardsIndent where fn xs | length xs == 2 = "2" | length xs == 3 = test | otherwise = "other" where test = "3"