summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_fail/ExplicitForAllFams4b.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/indexed-types/should_fail/ExplicitForAllFams4b.hs')
-rw-r--r--testsuite/tests/indexed-types/should_fail/ExplicitForAllFams4b.hs9
1 files changed, 7 insertions, 2 deletions
diff --git a/testsuite/tests/indexed-types/should_fail/ExplicitForAllFams4b.hs b/testsuite/tests/indexed-types/should_fail/ExplicitForAllFams4b.hs
index f8187e5878..6a19a172bf 100644
--- a/testsuite/tests/indexed-types/should_fail/ExplicitForAllFams4b.hs
+++ b/testsuite/tests/indexed-types/should_fail/ExplicitForAllFams4b.hs
@@ -22,7 +22,12 @@ class C a where
instance C Int where
type forall a b. CT [a] (a,a) = Float
- type forall b. CT _ _ = Maybe b
-
data forall a b. CD [a] (a,a) = CD5 Float
+
+instance C Bool where
+ type forall b. CT _ _ = Maybe b
data forall b. CD _ _ = CD6 (Maybe b)
+
+instance C Double where
+ type forall b. CT _ _ = Bool
+ data forall b. CD _ _ = CD7