summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck
diff options
context:
space:
mode:
authorJan Stolarek <jan.stolarek@p.lodz.pl>2015-11-09 15:44:47 +0100
committerJan Stolarek <jan.stolarek@p.lodz.pl>2015-11-09 15:52:20 +0100
commit3cfe60aebb9de2a1d897a111f779eacb6614b7cc (patch)
tree89b43cd2b75013aa8923bd2662d1730f0018fbc0 /testsuite/tests/typecheck
parentf4056324ea30b31f9cec7bf9bafa72bb695f6951 (diff)
downloadhaskell-3cfe60aebb9de2a1d897a111f779eacb6614b7cc.tar.gz
Abstract TFs can have injectivity information
Summary: For abstract type families we incorrectly rejected their injectivity annotation. Fixes #11007. Test Plan: #6018 Reviewers: goldfire, austin, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1453 GHC Trac Issues: #11007
Diffstat (limited to 'testsuite/tests/typecheck')
-rw-r--r--testsuite/tests/typecheck/should_compile/T6018.hs-boot7
1 files changed, 5 insertions, 2 deletions
diff --git a/testsuite/tests/typecheck/should_compile/T6018.hs-boot b/testsuite/tests/typecheck/should_compile/T6018.hs-boot
index 8ac5ce9e51..e31903a312 100644
--- a/testsuite/tests/typecheck/should_compile/T6018.hs-boot
+++ b/testsuite/tests/typecheck/should_compile/T6018.hs-boot
@@ -2,6 +2,9 @@
module T6018 where
--- this declaration uses different type variables than the one in the source
--- file but it should be accepted nevertheless
+-- these declarations use different type variables than the ones in the source
+-- file but they should be accepted nevertheless
+
type family F d e f = (r :: k) | r -> d e f
+
+type family FClosed (d :: *) (e :: *) (f :: *) = (r :: *) | r -> d e f where ..