1 2 3 4 5 6 7 8 9 10 11 12
-- !!! ds017 -- let expressions -- module ShouldCompile where f x y z = let a = x : [] b = x : a c = y (let d = (z, z) in d) result = (c, b) in result