summaryrefslogtreecommitdiff
path: root/testsuite/tests/module/Mod139_A.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/module/Mod139_A.hs')
-rw-r--r--testsuite/tests/module/Mod139_A.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/tests/module/Mod139_A.hs b/testsuite/tests/module/Mod139_A.hs
new file mode 100644
index 0000000000..9114c897ad
--- /dev/null
+++ b/testsuite/tests/module/Mod139_A.hs
@@ -0,0 +1,14 @@
+module Mod139_A where
+
+data Foo = Bar
+
+class C a where
+ m1 :: a -> Int
+
+instance C Int where
+ m1 _ = 2
+
+x = 'x'
+
+
+