summaryrefslogtreecommitdiff
path: root/ghc/compiler/tests/deSugar/ds021.hs
blob: f7e93929edd50694cb4921e178a6f87b250b1e54 (plain)
1
2
3
4
5
6
7
8
--!!! ds021 -- hairier uses of guards

module Test where

f x y z | x == y     = []
	| x /= z     = []
	| True	     = []
	| False	     = []