diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2018-02-18 11:00:40 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-02-18 11:56:10 -0500 |
commit | 1ede46d415757f53af33bc6672bd9d3fba7f205d (patch) | |
tree | aaee812b927a533c180d2f3695768fb24dc9b22d /testsuite | |
parent | 908046608bff517f1cc34d743681e177b0f46a05 (diff) | |
download | haskell-1ede46d415757f53af33bc6672bd9d3fba7f205d.tar.gz |
Implement stopgap solution for #14728
It turns out that one can produce ill-formed Core by
combining `GeneralizedNewtypeDeriving`, `TypeInType`, and
`TypeFamilies`, as demonstrated in #14728. The root of the problem
is allowing the last parameter of a class to appear in a //kind// of
an associated type family, as our current approach to deriving
associated type family instances simply doesn't work well for that
situation.
Although it might be possible to properly implement this feature
today (see https://ghc.haskell.org/trac/ghc/ticket/14728#comment:3
for a sketch of how this might work), there does not currently exist
a performant implementation of the algorithm needed to accomplish
this. Until such an implementation surfaces, we will make this corner
case of `GeneralizedNewtypeDeriving` an error.
Test Plan: make test TEST="T14728a T14728b"
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: rwbarton, thomie, carter
GHC Trac Issues: #14728
Differential Revision: https://phabricator.haskell.org/D4402
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/deriving/should_fail/T14728a.hs | 20 | ||||
-rw-r--r-- | testsuite/tests/deriving/should_fail/T14728a.stderr | 7 | ||||
-rw-r--r-- | testsuite/tests/deriving/should_fail/T14728b.hs | 16 | ||||
-rw-r--r-- | testsuite/tests/deriving/should_fail/T14728b.stderr | 7 | ||||
-rw-r--r-- | testsuite/tests/deriving/should_fail/all.T | 2 |
5 files changed, 52 insertions, 0 deletions
diff --git a/testsuite/tests/deriving/should_fail/T14728a.hs b/testsuite/tests/deriving/should_fail/T14728a.hs new file mode 100644 index 0000000000..28cf8e0ffc --- /dev/null +++ b/testsuite/tests/deriving/should_fail/T14728a.hs @@ -0,0 +1,20 @@ +{-# LANGUAGE GeneralizedNewtypeDeriving #-} +{-# LANGUAGE StandaloneDeriving #-} +{-# LANGUAGE TypeFamilies #-} +{-# LANGUAGE TypeInType #-} +module T14728a where + +import Data.Functor.Identity +import Data.Kind + +class C (a :: Type) where + type T a (x :: a) :: Type + type U z :: a + +instance C () where + type T () '() = Bool + +deriving instance C (Identity a) + +f :: T (Identity ()) ('Identity '()) +f = True diff --git a/testsuite/tests/deriving/should_fail/T14728a.stderr b/testsuite/tests/deriving/should_fail/T14728a.stderr new file mode 100644 index 0000000000..b76d073645 --- /dev/null +++ b/testsuite/tests/deriving/should_fail/T14728a.stderr @@ -0,0 +1,7 @@ + +T14728a.hs:17:1: error: + • Can't make a derived instance of ‘C (Identity a)’ + (even with cunning GeneralizedNewtypeDeriving): + the associated type ‘T’ contains the last type variable + of the class ‘C’ in a kind, which is not (yet) allowed + • In the stand-alone deriving instance for ‘C (Identity a)’ diff --git a/testsuite/tests/deriving/should_fail/T14728b.hs b/testsuite/tests/deriving/should_fail/T14728b.hs new file mode 100644 index 0000000000..7fdfcb3b5e --- /dev/null +++ b/testsuite/tests/deriving/should_fail/T14728b.hs @@ -0,0 +1,16 @@ +{-# LANGUAGE GeneralizedNewtypeDeriving #-} +{-# LANGUAGE StandaloneDeriving #-} +{-# LANGUAGE TypeFamilies #-} +{-# LANGUAGE TypeInType #-} +module T14728b where + +import Data.Functor.Identity +import Data.Kind + +class C (a :: Type) where + type U z :: a + +instance C () where + type U z = '() + +deriving instance C (Identity a) diff --git a/testsuite/tests/deriving/should_fail/T14728b.stderr b/testsuite/tests/deriving/should_fail/T14728b.stderr new file mode 100644 index 0000000000..ee74f8b4da --- /dev/null +++ b/testsuite/tests/deriving/should_fail/T14728b.stderr @@ -0,0 +1,7 @@ + +T14728b.hs:16:1: error: + • Can't make a derived instance of ‘C (Identity a)’ + (even with cunning GeneralizedNewtypeDeriving): + the associated type ‘U’ contains the last type variable + of the class ‘C’ in a kind, which is not (yet) allowed + • In the stand-alone deriving instance for ‘C (Identity a)’ diff --git a/testsuite/tests/deriving/should_fail/all.T b/testsuite/tests/deriving/should_fail/all.T index c9b8469c3c..acd3486918 100644 --- a/testsuite/tests/deriving/should_fail/all.T +++ b/testsuite/tests/deriving/should_fail/all.T @@ -69,3 +69,5 @@ test('T12512', omit_ways(['ghci']), compile_fail, ['']) test('T12801', normal, compile_fail, ['']) test('T14365', [extra_files(['T14365B.hs','T14365B.hs-boot'])], multimod_compile_fail, ['T14365A','']) +test('T14728a', normal, compile_fail, ['']) +test('T14728b', normal, compile_fail, ['']) |