diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2018-06-07 13:28:53 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-06-07 18:06:30 -0400 |
commit | 569c16a76ead8f9012fafe7a7e97c72fabe0bb94 (patch) | |
tree | 4b483d838e585ab0d48516ee54d23b2141d33fee /testsuite/tests/th/all.T | |
parent | 5026840fddc86c3bc10693eed676fbf6a74f4227 (diff) | |
download | haskell-569c16a76ead8f9012fafe7a7e97c72fabe0bb94.tar.gz |
Fix #15243 by fixing incorrect uses of NotPromoted
In `Convert`, we were incorrectly using `NotPromoted` to
denote type constructors that were actually intended to be promoted,
resulting in poor `-ddump-splices` output (as seen in #15243).
Easily fixed.
Test Plan: make test TEST=T15243
Reviewers: bgamari, goldfire
Reviewed By: bgamari
Subscribers: rwbarton, thomie, carter
GHC Trac Issues: #15243
Differential Revision: https://phabricator.haskell.org/D4809
Diffstat (limited to 'testsuite/tests/th/all.T')
-rw-r--r-- | testsuite/tests/th/all.T | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/tests/th/all.T b/testsuite/tests/th/all.T index e998bd0027..b97ed40353 100644 --- a/testsuite/tests/th/all.T +++ b/testsuite/tests/th/all.T @@ -414,3 +414,4 @@ test('T14875', normal, compile, ['-v0 -ddump-splices -dsuppress-uniques']) test('T14885a', normal, compile, ['']) test('T14885b', normal, compile, ['']) test('T14885c', normal, compile, ['']) +test('T15243', normal, compile, ['']) |