diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-05-19 21:05:30 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-05-19 21:34:44 +0200 |
commit | a88bb1b1518389817583290acaebfd6454aa3cec (patch) | |
tree | 8ef4bfc51390ac4637cc2faddcf136ed5f53cd61 /testsuite | |
parent | 2e6433af56a97ad9c501648afa5e1d8c6c17f82a (diff) | |
download | haskell-a88bb1b1518389817583290acaebfd6454aa3cec.tar.gz |
Give lifted primitive types a representation
As of D1774 everything in GHC.Prim has a representation generated for it
by TcTypeable (see #11120). Unfortunately I evidently missed propagating
this change to lifted primitive types. This patch fixes this (#12082).
Test Plan: Validate
Reviewers: austin
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2240
GHC Trac Issues: #12082
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/tests/typecheck/should_run/all.T | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/typecheck/should_run/all.T b/testsuite/tests/typecheck/should_run/all.T index 74d8f84bc8..c2b277d7d5 100755 --- a/testsuite/tests/typecheck/should_run/all.T +++ b/testsuite/tests/typecheck/should_run/all.T @@ -115,5 +115,5 @@ test('T11049', exit_code(1), compile_and_run, ['']) test('T11230', normal, compile_and_run, ['']) test('TypeOf', normal, compile_and_run, ['']) test('TypeRep', normal, compile_and_run, ['']) -test('T11120', expect_broken(12082), compile_and_run, ['']) +test('T11120', normal, compile_and_run, ['']) test('KindInvariant', normal, ghci_script, ['KindInvariant.script']) |