diff options
author | Jan Stolarek <jan.stolarek@p.lodz.pl> | 2016-01-09 20:58:52 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-01-09 20:58:54 +0100 |
commit | fbd6de2f0761b63a5f0a88ce0590f515d63790a4 (patch) | |
tree | c3bf647973fb4b675731a27d15af9919cd29d9e2 /testsuite/tests/th/T6018th.hs | |
parent | 5cb236dd6b497da0b9072b20ca74c298477f7a61 (diff) | |
download | haskell-fbd6de2f0761b63a5f0a88ce0590f515d63790a4.tar.gz |
Add InjectiveTypeFamilies language extension
Previously injective type families were part of TypeFamilies.
Now they are in a separate language extension.
Test Plan: ./validate
Reviewers: austin, bgamari, goldfire
Reviewed By: bgamari
Subscribers: goldfire, thomie
Differential Revision: https://phabricator.haskell.org/D1750
GHC Trac Issues: #11381
Diffstat (limited to 'testsuite/tests/th/T6018th.hs')
-rw-r--r-- | testsuite/tests/th/T6018th.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/th/T6018th.hs b/testsuite/tests/th/T6018th.hs index 62af743835..1643e9aea5 100644 --- a/testsuite/tests/th/T6018th.hs +++ b/testsuite/tests/th/T6018th.hs @@ -1,5 +1,5 @@ -{-# LANGUAGE TypeFamilies, DataKinds, UndecidableInstances, PolyKinds #-} - +{-# LANGUAGE InjectiveTypeFamilies, DataKinds, UndecidableInstances, + PolyKinds #-} module T6018th where import Language.Haskell.TH |