diff options
Diffstat (limited to 'ghc/compiler/tests/deSugar/ds029.hs')
-rw-r--r-- | ghc/compiler/tests/deSugar/ds029.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ghc/compiler/tests/deSugar/ds029.hs b/ghc/compiler/tests/deSugar/ds029.hs new file mode 100644 index 0000000000..fd9f583487 --- /dev/null +++ b/ghc/compiler/tests/deSugar/ds029.hs @@ -0,0 +1,9 @@ +--!!! ds029: pattern binding with guards (dubious but valid) +-- + +module Test where + +f x = y + where (y,z) | y < z = (0,1) + | y > z = (1,2) + | True = (2,3) |