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