summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser/should_compile/EmptyDecls.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/parser/should_compile/EmptyDecls.hs')
-rw-r--r--testsuite/tests/parser/should_compile/EmptyDecls.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/parser/should_compile/EmptyDecls.hs b/testsuite/tests/parser/should_compile/EmptyDecls.hs
new file mode 100644
index 0000000000..9583f23e32
--- /dev/null
+++ b/testsuite/tests/parser/should_compile/EmptyDecls.hs
@@ -0,0 +1,9 @@
+module Main where {
+
+f x = x;
+;
+;
+g y z = z;
+
+main = print (g (f False) (f True));
+}