diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2012-10-19 01:49:14 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2012-10-19 01:49:14 +0100 |
commit | 09cdd12b22bcff1876ea80c0d9878507c2ed4f1f (patch) | |
tree | c6474515aa1e2ce3bb6cb9a090f121c0b339be5f /testsuite/tests/ghci.debugger | |
parent | c673422336f4b1a2d5280adddc00a4ab9209426b (diff) | |
download | haskell-09cdd12b22bcff1876ea80c0d9878507c2ed4f1f.tar.gz |
Replace Rank2Types and PolymorphicComponents by RankNTypes
Diffstat (limited to 'testsuite/tests/ghci.debugger')
4 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/print012.script b/testsuite/tests/ghci.debugger/scripts/print012.script index bda9a8fbe7..a24a6a610e 100644 --- a/testsuite/tests/ghci.debugger/scripts/print012.script +++ b/testsuite/tests/ghci.debugger/scripts/print012.script @@ -1,4 +1,4 @@ -:set -XGADTs -XRank2Types -XExistentialQuantification -XDeriveDataTypeable -XGeneralizedNewtypeDeriving +:set -XGADTs -XRankNTypes -XExistentialQuantification -XDeriveDataTypeable -XGeneralizedNewtypeDeriving :l ../GADT :a ../Test :m +Main diff --git a/testsuite/tests/ghci.debugger/scripts/print013.script b/testsuite/tests/ghci.debugger/scripts/print013.script index 334e6050ca..cc80c29c63 100644 --- a/testsuite/tests/ghci.debugger/scripts/print013.script +++ b/testsuite/tests/ghci.debugger/scripts/print013.script @@ -1,6 +1,6 @@ -- Test handling of extra fields in the representation due to dictionaries -:set -XGADTs -XRank2Types +:set -XGADTs -XRankNTypes :l ../GADT let d = DictN (1 :: Integer) diff --git a/testsuite/tests/ghci.debugger/scripts/print014.script b/testsuite/tests/ghci.debugger/scripts/print014.script index 40c8bec9db..e6d595871a 100644 --- a/testsuite/tests/ghci.debugger/scripts/print014.script +++ b/testsuite/tests/ghci.debugger/scripts/print014.script @@ -1,6 +1,6 @@ -- Test handling of extra fields in the representation due to existentials. -:set -XGADTs -XRank2Types +:set -XGADTs -XRankNTypes :l ../GADT let e = Exist 1 diff --git a/testsuite/tests/ghci.debugger/scripts/print034.script b/testsuite/tests/ghci.debugger/scripts/print034.script index 95bcfde0a6..39f2743719 100644 --- a/testsuite/tests/ghci.debugger/scripts/print034.script +++ b/testsuite/tests/ghci.debugger/scripts/print034.script @@ -1,6 +1,6 @@ -- More GADT goodness -:set -XGADTs -XRank2Types -XDeriveDataTypeable -XGeneralizedNewtypeDeriving +:set -XGADTs -XRankNTypes -XDeriveDataTypeable -XGeneralizedNewtypeDeriving :l ../GADT :a ../Test :m +Main |