summaryrefslogtreecommitdiff
path: root/testsuite/tests/deSugar/should_compile/ds021.hs
blob: 9cca7936009cf94e98a17cd2b1c2533c80ff0d8d (plain)
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      = []