summaryrefslogtreecommitdiff
path: root/testsuite/tests/codeGen/should_run/cgrun010.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/codeGen/should_run/cgrun010.hs')
-rw-r--r--testsuite/tests/codeGen/should_run/cgrun010.hs5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/tests/codeGen/should_run/cgrun010.hs b/testsuite/tests/codeGen/should_run/cgrun010.hs
new file mode 100644
index 0000000000..ccc323d4cf
--- /dev/null
+++ b/testsuite/tests/codeGen/should_run/cgrun010.hs
@@ -0,0 +1,5 @@
+main = print a
+ where
+ a :: Int
+ b :: Int
+ (a, b) = (3 + 4, 5 + 6)