diff options
author | Jose Pedro Magalhaes <jpm@cs.uu.nl> | 2011-11-11 09:07:50 +0000 |
---|---|---|
committer | Jose Pedro Magalhaes <jpm@cs.uu.nl> | 2011-11-11 09:07:50 +0000 |
commit | 5e1333af4a5f3883cbb4e5b24372d29afa02c6ca (patch) | |
tree | fa4410a622fbaa645a0196753ec2c33d9516f39f /testsuite/tests/th/T5290.stderr | |
parent | ccf86298e3d8daec41c3a780555e17e816b58c1f (diff) | |
download | haskell-5e1333af4a5f3883cbb4e5b24372d29afa02c6ca.tar.gz |
New kind-polymorphic core
This big patch implements a kind-polymorphic core for GHC. The current
implementation focuses on making sure that all kind-monomorphic programs still
work in the new core; it is not yet guaranteed that kind-polymorphic programs
(using the new -XPolyKinds flag) will work.
For more information, see http://haskell.org/haskellwiki/GHC/Kinds
Diffstat (limited to 'testsuite/tests/th/T5290.stderr')
-rw-r--r-- | testsuite/tests/th/T5290.stderr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/th/T5290.stderr b/testsuite/tests/th/T5290.stderr index d8afd836b1..9f7067be06 100644 --- a/testsuite/tests/th/T5290.stderr +++ b/testsuite/tests/th/T5290.stderr @@ -1,6 +1,6 @@ T5290.hs:1:1: Splicing declarations let n = mkName "T" - in return [DataD [] n [] [NormalC n [(Unpacked, ConT 'Int)]] []] + in return [DataD [] n [] [NormalC n [(Unpacked, ConT ''Int)]] []] ======> T5290.hs:(7,4)-(8,67) data T = T {-# UNPACK #-} !Int |