summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/tc161.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/typecheck/should_compile/tc161.hs')
-rw-r--r--testsuite/tests/typecheck/should_compile/tc161.hs17
1 files changed, 17 insertions, 0 deletions
diff --git a/testsuite/tests/typecheck/should_compile/tc161.hs b/testsuite/tests/typecheck/should_compile/tc161.hs
new file mode 100644
index 0000000000..44f41a57b4
--- /dev/null
+++ b/testsuite/tests/typecheck/should_compile/tc161.hs
@@ -0,0 +1,17 @@
+{-# LANGUAGE Rank2Types #-}
+-- Blew up GHC 5.04, with:
+-- Ambiguous type variable(s) `q' in the constraint `Foo q'
+-- arising from a function with an overloaded argument type at Foo.hs:7
+-- Expected type: Int -> (forall q1. (Foo q1) => q1 -> a) -> a
+-- Inferred type: Int -> (q -> a) -> a
+-- In the application `GHC.Err.noMethodBindingError "Foo.hs:7|Foo.foo"#'
+--
+-- Fix is to give wild-card args to the default methods
+-- See TcClassDcl.mkDefMethRhs
+
+module ShouldCompile where
+
+class Foo a where
+ op :: Eq c => c -> (forall b. Eq b => b->b) -> a -> a
+
+instance Foo Int