diff options
author | Ian Lynagh <igloo@earth.li> | 2010-07-19 15:09:09 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-07-19 15:09:09 +0000 |
commit | 412040168f72d73acfb25b991c0c757a817a4aba (patch) | |
tree | d9ee1ea1860dc70d96c5aee4e80cdee35a6e6361 /compiler/main | |
parent | 997c87bcdca78ad60c129a0da29a425bc5bac638 (diff) | |
download | haskell-412040168f72d73acfb25b991c0c757a817a4aba.tar.gz |
Deprecate NewQualifiedOperators extension (rejected by H')
Diffstat (limited to 'compiler/main')
-rw-r--r-- | compiler/main/DynFlags.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 4b3f2c6db1..88bf5f5f9d 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1676,7 +1676,8 @@ xFlags = [ ( "UndecidableInstances", Opt_UndecidableInstances, const Supported ), ( "IncoherentInstances", Opt_IncoherentInstances, const Supported ), ( "PackageImports", Opt_PackageImports, const Supported ), - ( "NewQualifiedOperators", Opt_NewQualifiedOperators, const Supported ) + ( "NewQualifiedOperators", Opt_NewQualifiedOperators, + const $ Deprecated "The new qualified operator syntax was rejected by Haskell'" ) ] impliedFlags :: [(DynFlag, DynFlag)] |