diff options
Diffstat (limited to 'testsuite/tests/ghci/prog008/ghci.prog008.stdout')
-rw-r--r-- | testsuite/tests/ghci/prog008/ghci.prog008.stdout | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/ghci/prog008/ghci.prog008.stdout b/testsuite/tests/ghci/prog008/ghci.prog008.stdout new file mode 100644 index 0000000000..99e63a1b14 --- /dev/null +++ b/testsuite/tests/ghci/prog008/ghci.prog008.stdout @@ -0,0 +1,8 @@ +class C a b where
+ c1 :: Num b => a -> b
+ c2 :: (Num b, Show b) => a -> b
+ c3 :: a1 -> b
+class C a b where
+ c1 :: Num b => a -> b
+ c2 :: (Num b, Show b) => a -> b
+ c3 :: forall a1. a1 -> b
|