HaRe-0.8.3.0: test/testdata/Renaming/LayoutIn2.hs.expected
module LayoutIn2 where
--Layout rule applies after 'where','let','do' and 'of'
--In this Example: rename 'list' to 'ls'.
silly :: [Int] -> Int
silly ls = case ls of (1:xs) -> 1
--There is a comment
(2:xs)
| x < 10 -> 4 where x = last xs
otherwise -> 12