1 2 3 4 5 6 7 8
-- !!! ds021 -- hairier uses of guards module ShouldCompile where f x y z | x == y = [] | x /= z = [] | True = [] | False = []