summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/prog003/A.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghci/prog003/A.hs')
-rw-r--r--testsuite/tests/ghci/prog003/A.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/ghci/prog003/A.hs b/testsuite/tests/ghci/prog003/A.hs
new file mode 100644
index 0000000000..6e9351c066
--- /dev/null
+++ b/testsuite/tests/ghci/prog003/A.hs
@@ -0,0 +1,8 @@
+module A(main,a) where
+
+import B
+import C(c)
+
+main = print (a 42)
+
+a x = b x + c x