We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
f x = case x of _ -> 1 g = let h = f 2 in h
Unfolding f results in:
f
g = let h = case 2 of _ -> 1 in h
which is insufficiently indented.
The retrie CLI tool handles this properly.