summaryrefslogtreecommitdiff
path: root/testsuite/tests/deSugar/should_compile/ds015.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/deSugar/should_compile/ds015.hs')
-rw-r--r--testsuite/tests/deSugar/should_compile/ds015.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/deSugar/should_compile/ds015.hs b/testsuite/tests/deSugar/should_compile/ds015.hs
new file mode 100644
index 0000000000..24645778ee
--- /dev/null
+++ b/testsuite/tests/deSugar/should_compile/ds015.hs
@@ -0,0 +1,9 @@
+-- !!! ds015 -- lambdas
+--
+module ShouldCompile where
+
+f x = ( \ x -> x ) x
+
+g x y = ( \ x y -> y x ) ( \ x -> x ) x
+
+h x y = ( \ (x:xs) -> x ) x