diff options
author | simonpj@microsoft.com <unknown> | 2010-09-23 12:59:10 +0000 |
---|---|---|
committer | simonpj@microsoft.com <unknown> | 2010-09-23 12:59:10 +0000 |
commit | b378873b416afbea1eda4ac375d7716811a5c2cf (patch) | |
tree | 355de8a9a40fb533e0e3bebedab1a3c001c2ae47 /compiler | |
parent | ef669fa4fee06bd91f5e6b403ebeac1e02c8ff63 (diff) | |
download | haskell-b378873b416afbea1eda4ac375d7716811a5c2cf.tar.gz |
Impredicative types is no longer deprecated
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/main/DynFlags.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index eb2dbef651..58bf18cf2e 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1566,8 +1566,7 @@ xFlags = [ ( "LiberalTypeSynonyms", Opt_LiberalTypeSynonyms, nop ), ( "Rank2Types", Opt_Rank2Types, nop ), ( "RankNTypes", Opt_RankNTypes, nop ), - ( "ImpredicativeTypes", Opt_ImpredicativeTypes, - \_ -> deprecate "impredicative polymorphism will be simplified or removed in GHC 6.14" ), + ( "ImpredicativeTypes", Opt_ImpredicativeTypes, nop), ( "TypeOperators", Opt_TypeOperators, nop ), ( "RecursiveDo", Opt_RecursiveDo, deprecatedForExtension "DoRec"), |