<div dir="ltr"><div dir="auto">Hi Gabor,<br><br></div><div>Indeed, I can reproduce this issue. This is happening because your locale does not support Unicode. It is probably something like this:<br><br>$ locale -a<br>C<br>POSIX<br><br></div><div>Rather than fix this particular issue, I suggest we forbid Unicode in GHC sources using the linter (the one that checks for lines too long, etc) to avoid such problems in the future.<br><br>> Can this be done with unicode escapes somehow?<br><br></div><div>Yes, that would be '\x2605'.<br><br></div><div>All the best,<br></div><div>- Vladislav<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Jun 15, 2018 11:34, "Gabor Greif" <<a href="mailto:ggreif@gmail.com" target="_blank">ggreif@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">My `happy` chokes on the unicode sequence you added:<br>
<br>
(if isUnicode $1 then "★" else "*")<br>
<br>
Casn this be done with unicode escapes somehow?<br>
<br>
Cheers,<br>
<br>
    Gabor<br>
<br>
PS: Happy Version 1.19.9 Copyright (c) 1993-1996 Andy Gill, Simon<br>
Marlow (c) 1997-2005 Simon Marlow<br>
<br>
On 6/14/18, <a href="mailto:git@git.haskell.org" target="_blank">git@git.haskell.org</a> <<a href="mailto:git@git.haskell.org" target="_blank">git@git.haskell.org</a>> wrote:<br>
> Repository : ssh://<a href="http://git@git.haskell.org/ghc" rel="noreferrer" target="_blank">git@git.haskell.org/ghc</a><br>
><br>
> On branch  : master<br>
> Link       :<br>
> <a href="http://ghc.haskell.org/trac/ghc/changeset/d650729f9a0f3b6aa5e6ef2d5fba337f6f70fa60/ghc" rel="noreferrer" target="_blank">http://ghc.haskell.org/trac/ghc/changeset/d650729f9a0f3b6aa5e6ef2d5fba337f6f70fa60/ghc</a><br>
><br>
>>---------------------------------------------------------------<br>
><br>
> commit d650729f9a0f3b6aa5e6ef2d5fba337f6f70fa60<br>
> Author: Vladislav Zavialov <<a href="mailto:vlad.z.4096@gmail.com" target="_blank">vlad.z.4096@gmail.com</a>><br>
> Date:   Thu Jun 14 15:02:36 2018 -0400<br>
><br>
>     Embrace -XTypeInType, add -XStarIsType<br>
><br>
>     Summary:<br>
>     Implement the "Embrace Type :: Type" GHC proposal,<br>
>     .../ghc-proposals/blob/master/proposals/0020-no-type-in-type.rst<br>
><br>
>     GHC 8.0 included a major change to GHC's type system: the Type :: Type<br>
>     axiom. Though casual users were protected from this by hiding its<br>
>     features behind the -XTypeInType extension, all programs written in GHC<br>
>     8+ have the axiom behind the scenes. In order to preserve backward<br>
>     compatibility, various legacy features were left unchanged. For example,<br>
>     with -XDataKinds but not -XTypeInType, GADTs could not be used in types.<br>
>     Now these restrictions are lifted and -XTypeInType becomes a redundant<br>
>     flag that will be eventually deprecated.<br>
><br>
>     * Incorporate the features currently in -XTypeInType into the<br>
>       -XPolyKinds and -XDataKinds extensions.<br>
>     * Introduce a new extension -XStarIsType to control how to parse * in<br>
>       code and whether to print it in error messages.<br>
><br>
>     Test Plan: Validate<br>
><br>
>     Reviewers: goldfire, hvr, bgamari, alanz, simonpj<br>
><br>
>     Reviewed By: goldfire, simonpj<br>
><br>
>     Subscribers: rwbarton, thomie, mpickering, carter<br>
><br>
>     GHC Trac Issues: #15195<br>
><br>
>     Differential Revision: <a href="https://phabricator.haskell.org/D4748" rel="noreferrer" target="_blank">https://phabricator.haskell.org/D4748</a><br>
><br>
><br>
>>---------------------------------------------------------------<br>
><br>
> d650729f9a0f3b6aa5e6ef2d5fba337f6f70fa60<br>
>  .gitignore                                         |   1 +<br>
>  .gitmodules                                        |   4 +-<br>
>  compiler/basicTypes/DataCon.hs                     |  22 +-<br>
>  compiler/basicTypes/Name.hs                        |  21 +-<br>
>  compiler/basicTypes/RdrName.hs                     |  96 +++-<br>
>  compiler/basicTypes/SrcLoc.hs                      |   5 +-<br>
>  compiler/deSugar/DsMeta.hs                         |   7 +-<br>
>  compiler/hsSyn/Convert.hs                          |  37 +-<br>
>  compiler/hsSyn/HsDecls.hs                          |   9 +-<br>
>  compiler/hsSyn/HsExtension.hs                      |  16 +-<br>
>  compiler/hsSyn/HsInstances.hs                      |   5 -<br>
>  compiler/hsSyn/HsTypes.hs                          | 117 +----<br>
>  compiler/iface/IfaceType.hs                        |   8 +-<br>
>  compiler/main/DynFlags.hs                          |  31 ++<br>
>  compiler/main/DynFlags.hs-boot                     |   1 +<br>
>  compiler/main/HscTypes.hs                          |   3 +-<br>
>  compiler/parser/Lexer.x                            | 104 +++--<br>
>  compiler/parser/Parser.y                           |  88 ++--<br>
>  compiler/parser/RdrHsSyn.hs                        | 190 ++++----<br>
>  compiler/prelude/PrelNames.hs                      |   7 +-<br>
>  compiler/prelude/PrelNames.hs-boot                 |   3 +-<br>
>  compiler/prelude/TysWiredIn.hs                     |  24 +-<br>
>  compiler/rename/RnEnv.hs                           |  43 +-<br>
>  compiler/rename/RnSource.hs                        |   4 +-<br>
>  compiler/rename/RnTypes.hs                         | 186 ++------<br>
>  compiler/typecheck/TcDeriv.hs                      |  14 +-<br>
>  compiler/typecheck/TcHsType.hs                     |  82 ++--<br>
>  compiler/typecheck/TcInstDcls.hs                   |   4 +-<br>
>  compiler/typecheck/TcMType.hs                      |   2 +-<br>
>  compiler/typecheck/TcPatSyn.hs                     |   2 +-<br>
>  compiler/typecheck/TcRnTypes.hs                    |   6 -<br>
>  compiler/typecheck/TcSplice.hs                     |   4 +-<br>
>  compiler/typecheck/TcTyClsDecls.hs                 |  43 +-<br>
>  compiler/types/Kind.hs                             |  33 +-<br>
>  compiler/types/TyCoRep.hs                          |   1 +<br>
>  compiler/types/TyCon.hs                            |   8 +-<br>
>  compiler/types/Type.hs                             |  11 +-<br>
>  compiler/types/Unify.hs                            |   2 +-<br>
>  compiler/utils/Outputable.hs                       |  11 +-<br>
>  docs/users_guide/8.6.1-notes.rst                   |  30 +-<br>
>  docs/users_guide/glasgow_exts.rst                  | 482<br>
> +++++++++------------<br>
>  libraries/base/Data/Data.hs                        |   4 +-<br>
>  libraries/base/Data/Kind.hs                        |   2 +-<br>
>  libraries/base/Data/Proxy.hs                       |   2 +-<br>
>  libraries/base/Data/Type/Equality.hs               |   4 +-<br>
>  libraries/base/Data/Typeable.hs                    |  26 +-<br>
>  libraries/base/Data/Typeable/Internal.hs           |   1 -<br>
>  libraries/base/GHC/Base.hs                         |   3 +-<br>
>  libraries/base/GHC/Err.hs                          |   2 +-<br>
>  libraries/base/GHC/Generics.hs                     |  50 +--<br>
>  libraries/base/Type/Reflection/Unsafe.hs           |   2 +-<br>
>  libraries/base/tests/CatEntail.hs                  |   4 +-<br>
>  .../ghc-boot-th/GHC/LanguageExtensions/Type.hs     |   1 +<br>
>  libraries/ghc-prim/GHC/Magic.hs                    |   3 +-<br>
>  libraries/ghc-prim/GHC/Types.hs                    |   8 +-<br>
>  testsuite/tests/codeGen/should_fail/T13233.hs      |   2 +-<br>
>  testsuite/tests/dependent/ghci/T11549.script       |   2 +-<br>
>  testsuite/tests/dependent/ghci/T14238.stdout       |   2 +-<br>
>  testsuite/tests/dependent/should_compile/Dep1.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_compile/Dep2.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_compile/Dep3.hs   |   2 +-<br>
>  .../tests/dependent/should_compile/DkNameRes.hs    |   9 +<br>
>  .../dependent/should_compile/InferDependency.hs    |   6 -<br>
>  .../dependent/should_compile/KindEqualities.hs     |   2 +-<br>
>  .../dependent/should_compile/KindEqualities2.hs    |   3 +-<br>
>  .../tests/dependent/should_compile/KindLevels.hs   |   2 +-<br>
>  .../tests/dependent/should_compile/RAE_T32b.hs     |  24 +-<br>
>  testsuite/tests/dependent/should_compile/Rae31.hs  |  23 +-<br>
>  .../tests/dependent/should_compile/RaeBlogPost.hs  |  27 +-<br>
>  .../tests/dependent/should_compile/RaeJobTalk.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_compile/T11405.hs |   2 +-<br>
>  testsuite/tests/dependent/should_compile/T11635.hs |   2 +-<br>
>  testsuite/tests/dependent/should_compile/T11711.hs |   1 -<br>
>  testsuite/tests/dependent/should_compile/T11719.hs |   6 +-<br>
>  testsuite/tests/dependent/should_compile/T11966.hs |   1 -<br>
>  testsuite/tests/dependent/should_compile/T12176.hs |   2 +-<br>
>  testsuite/tests/dependent/should_compile/T12442.hs |   4 +-<br>
>  testsuite/tests/dependent/should_compile/T12742.hs |   2 +-<br>
>  testsuite/tests/dependent/should_compile/T13910.hs |   9 +-<br>
>  testsuite/tests/dependent/should_compile/T13938.hs |   3 +-<br>
>  .../tests/dependent/should_compile/T13938a.hs      |   3 +-<br>
>  testsuite/tests/dependent/should_compile/T14038.hs |   3 +-<br>
>  .../tests/dependent/should_compile/T14066a.hs      |   2 +-<br>
>  testsuite/tests/dependent/should_compile/T14556.hs |   3 +-<br>
>  testsuite/tests/dependent/should_compile/T14720.hs |   3 +-<br>
>  testsuite/tests/dependent/should_compile/T14749.hs |   2 +-<br>
>  testsuite/tests/dependent/should_compile/T14991.hs |   3 +-<br>
>  testsuite/tests/dependent/should_compile/T9632.hs  |   2 +-<br>
>  .../tests/dependent/should_compile/TypeLevelVec.hs |   2 +-<br>
>  testsuite/tests/dependent/should_compile/all.T     |   1 +<br>
>  .../dependent/should_compile/dynamic-paper.hs      |  27 +-<br>
>  .../tests/dependent/should_compile/mkGADTVars.hs   |   2 +-<br>
>  .../tests/dependent/should_fail/BadTelescope.hs    |   2 +-<br>
>  .../tests/dependent/should_fail/BadTelescope2.hs   |   2 +-<br>
>  .../tests/dependent/should_fail/BadTelescope3.hs   |   2 +-<br>
>  .../tests/dependent/should_fail/BadTelescope4.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_fail/DepFail1.hs  |   2 +-<br>
>  .../tests/dependent/should_fail/InferDependency.hs |   2 +-<br>
>  .../tests/dependent/should_fail/KindLevelsB.hs     |   9 -<br>
>  .../tests/dependent/should_fail/KindLevelsB.stderr |   5 -<br>
>  .../tests/dependent/should_fail/PromotedClass.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_fail/RAE_T32a.hs  |  28 +-<br>
>  .../tests/dependent/should_fail/RAE_T32a.stderr    |   6 +-<br>
>  .../tests/dependent/should_fail/RenamingStar.hs    |   2 +-<br>
>  .../dependent/should_fail/RenamingStar.stderr      |  10 +-<br>
>  testsuite/tests/dependent/should_fail/SelfDep.hs   |   2 +<br>
>  .../tests/dependent/should_fail/SelfDep.stderr     |   8 +-<br>
>  testsuite/tests/dependent/should_fail/T11407.hs    |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T11473.hs    |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T12081.hs    |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T12174.hs    |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T13135.hs    |   4 +-<br>
>  testsuite/tests/dependent/should_fail/T13601.hs    |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T13780a.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T13780b.hs   |   3 +-<br>
>  testsuite/tests/dependent/should_fail/T13780c.hs   |   2 +-<br>
>  .../tests/dependent/should_fail/T13780c.stderr     |   6 +-<br>
>  testsuite/tests/dependent/should_fail/T14066.hs    |   4 +-<br>
>  testsuite/tests/dependent/should_fail/T14066c.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T14066d.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T14066e.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T14066f.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T14066g.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T14066h.hs   |   2 +-<br>
>  testsuite/tests/dependent/should_fail/T15245.hs    |  10 +<br>
>  .../tests/dependent/should_fail/T15245.stderr      |   7 +<br>
>  .../tests/dependent/should_fail/TypeSkolEscape.hs  |   2 +-<br>
>  testsuite/tests/dependent/should_fail/all.T        |   2 +-<br>
>  testsuite/tests/dependent/should_run/T11964a.hs    |   2 +-<br>
>  testsuite/tests/deriving/should_compile/T11416.hs  |   3 +-<br>
>  testsuite/tests/deriving/should_compile/T11732a.hs |   2 +-<br>
>  testsuite/tests/deriving/should_compile/T11732b.hs |   2 +-<br>
>  testsuite/tests/deriving/should_compile/T11732c.hs |   2 +-<br>
>  testsuite/tests/deriving/should_compile/T14331.hs  |   2 +-<br>
>  testsuite/tests/deriving/should_compile/T14579.hs  |   3 +-<br>
>  testsuite/tests/deriving/should_compile/T14932.hs  |   4 +-<br>
>  testsuite/tests/deriving/should_fail/T12512.hs     |   2 +-<br>
>  testsuite/tests/deriving/should_fail/T14728a.hs    |   2 +-<br>
>  testsuite/tests/deriving/should_fail/T14728b.hs    |   2 +-<br>
>  testsuite/tests/deriving/should_fail/T15073.hs     |   2 +-<br>
>  testsuite/tests/determinism/determ004/determ004.hs |   2 +-<br>
>  testsuite/tests/determinism/determ014/A.hs         |   6 +-<br>
>  testsuite/tests/driver/T4437.hs                    |   1 +<br>
>  testsuite/tests/gadt/T7293.hs                      |   6 +-<br>
>  testsuite/tests/gadt/T7293.stderr                  |   4 +-<br>
>  testsuite/tests/gadt/T7294.hs                      |   6 +-<br>
>  testsuite/tests/gadt/T7294.stderr                  |   4 +-<br>
>  testsuite/tests/generics/GEq/GEq1.hs               |   5 +-<br>
>  testsuite/tests/ghci/scripts/T10321.hs             |   3 +-<br>
>  testsuite/tests/ghci/scripts/T11252.script         |   2 +-<br>
>  testsuite/tests/ghci/scripts/T11376.script         |   2 +-<br>
>  testsuite/tests/ghci/scripts/T12550.script         |   2 +-<br>
>  testsuite/tests/ghci/scripts/T13407.script         |   4 +-<br>
>  testsuite/tests/ghci/scripts/T13963.script         |   2 +-<br>
>  testsuite/tests/ghci/scripts/T13988.hs             |   2 +-<br>
>  testsuite/tests/ghci/scripts/T7873.script          |   2 +-<br>
>  testsuite/tests/ghci/scripts/T7939.hs              |   4 +-<br>
>  testsuite/tests/ghci/scripts/T8357.hs              |   5 +-<br>
>  testsuite/tests/indexed-types/should_compile/HO.hs |   5 +-<br>
>  .../tests/indexed-types/should_compile/Numerals.hs |   7 +-<br>
>  .../tests/indexed-types/should_compile/T12369.hs   |   4 +-<br>
>  .../tests/indexed-types/should_compile/T12522b.hs  |   8 +-<br>
>  .../tests/indexed-types/should_compile/T12938.hs   |   2 +-<br>
>  .../tests/indexed-types/should_compile/T13244.hs   |   2 +-<br>
>  .../tests/indexed-types/should_compile/T13398b.hs  |   2 +-<br>
>  .../tests/indexed-types/should_compile/T14162.hs   |   3 +-<br>
>  .../tests/indexed-types/should_compile/T14554.hs   |   5 +-<br>
>  .../tests/indexed-types/should_compile/T15122.hs   |   2 +-<br>
>  .../tests/indexed-types/should_compile/T2219.hs    |   4 +-<br>
>  .../tests/indexed-types/should_compile/T7585.hs    |   6 +-<br>
>  .../tests/indexed-types/should_compile/T9747.hs    |   9 +-<br>
>  .../tests/indexed-types/should_fail/T12522a.hs     |   6 +-<br>
>  .../tests/indexed-types/should_fail/T12522a.stderr |   6 +-<br>
>  .../tests/indexed-types/should_fail/T13674.hs      |   4 +-<br>
>  .../tests/indexed-types/should_fail/T13784.hs      |   5 +-<br>
>  .../tests/indexed-types/should_fail/T13784.stderr  |  14 +-<br>
>  .../tests/indexed-types/should_fail/T13877.hs      |   6 +-<br>
>  .../tests/indexed-types/should_fail/T13972.hs      |   2 +-<br>
>  .../tests/indexed-types/should_fail/T14175.hs      |   2 +-<br>
>  .../tests/indexed-types/should_fail/T14246.hs      |   8 +-<br>
>  .../tests/indexed-types/should_fail/T14246.stderr  |   2 +-<br>
>  .../tests/indexed-types/should_fail/T14369.hs      |   2 +-<br>
>  testsuite/tests/indexed-types/should_fail/T2544.hs |   4 +-<br>
>  .../tests/indexed-types/should_fail/T2544.stderr   |   8 +-<br>
>  .../tests/indexed-types/should_fail/T3330c.hs      |   6 +-<br>
>  .../tests/indexed-types/should_fail/T3330c.stderr  |  10 +-<br>
>  testsuite/tests/indexed-types/should_fail/T4174.hs |  10 +-<br>
>  .../tests/indexed-types/should_fail/T4174.stderr   |   6 +-<br>
>  testsuite/tests/indexed-types/should_fail/T7786.hs |   4 +-<br>
>  .../tests/indexed-types/should_fail/T7786.stderr   |  25 +-<br>
>  testsuite/tests/indexed-types/should_fail/T7967.hs |  10 +-<br>
>  .../tests/indexed-types/should_fail/T7967.stderr   |  12 +-<br>
>  testsuite/tests/indexed-types/should_fail/T9036.hs |   7 +-<br>
>  .../tests/indexed-types/should_fail/T9036.stderr   |   2 +-<br>
>  testsuite/tests/indexed-types/should_fail/T9662.hs |   4 +-<br>
>  .../tests/indexed-types/should_fail/T9662.stderr   |   6 +-<br>
>  .../tests/indexed-types/should_run/T11465a.hs      |   1 -<br>
>  .../should_run/overloadedrecflds_generics.hs       |   5 +-<br>
>  .../should_run/overloadedrecfldsrun07.hs           |   6 +-<br>
>  .../parser/should_compile/DumpParsedAst.stderr     | 109 ++---<br>
>  .../tests/parser/should_compile/DumpRenamedAst.hs  |   2 +-<br>
>  .../parser/should_compile/DumpRenamedAst.stderr    |  62 ++-<br>
>  testsuite/tests/parser/should_compile/T10379.hs    |   2 +-<br>
>  testsuite/tests/parser/should_fail/T15209.stderr   |   2 +-<br>
>  testsuite/tests/parser/should_fail/all.T           |   5 +<br>
>  testsuite/tests/parser/should_fail/readFail036.hs  |   4 +-<br>
>  .../tests/parser/should_fail/readFail036.stderr    |   4 +-<br>
>  testsuite/tests/parser/should_fail/typeops_A.hs    |   1 +<br>
>  .../tests/parser/should_fail/typeops_A.stderr      |   2 +<br>
>  testsuite/tests/parser/should_fail/typeops_B.hs    |   1 +<br>
>  .../tests/parser/should_fail/typeops_B.stderr      |   2 +<br>
>  testsuite/tests/parser/should_fail/typeops_C.hs    |   1 +<br>
>  .../tests/parser/should_fail/typeops_C.stderr      |   2 +<br>
>  testsuite/tests/parser/should_fail/typeops_D.hs    |   1 +<br>
>  .../tests/parser/should_fail/typeops_D.stderr      |   2 +<br>
>  .../tests/partial-sigs/should_compile/T15039a.hs   |  12 +-<br>
>  .../partial-sigs/should_compile/T15039a.stderr     |  11 +-<br>
>  .../tests/partial-sigs/should_compile/T15039b.hs   |  12 +-<br>
>  .../partial-sigs/should_compile/T15039b.stderr     |  44 +-<br>
>  .../tests/partial-sigs/should_compile/T15039c.hs   |  12 +-<br>
>  .../partial-sigs/should_compile/T15039c.stderr     |  11 +-<br>
>  .../tests/partial-sigs/should_compile/T15039d.hs   |  12 +-<br>
>  .../partial-sigs/should_compile/T15039d.stderr     |  44 +-<br>
>  .../tests/partial-sigs/should_fail/T14040a.hs      |   2 +-<br>
>  testsuite/tests/partial-sigs/should_fail/T14584.hs |   2 +-<br>
>  .../tests/partial-sigs/should_fail/T14584.stderr   |   2 +-<br>
>  testsuite/tests/patsyn/should_compile/T12698.hs    |   2 +-<br>
>  testsuite/tests/patsyn/should_compile/T12968.hs    |   2 +-<br>
>  testsuite/tests/patsyn/should_compile/T13768.hs    |   8 +-<br>
>  testsuite/tests/patsyn/should_compile/T14058.hs    |   2 +-<br>
>  testsuite/tests/patsyn/should_compile/T14058a.hs   |   3 +-<br>
>  testsuite/tests/patsyn/should_fail/T14507.hs       |   4 +-<br>
>  testsuite/tests/patsyn/should_fail/T14507.stderr   |   2 +-<br>
>  testsuite/tests/patsyn/should_fail/T14552.hs       |   2 +-<br>
>  testsuite/tests/perf/compiler/T12227.hs            |  17 +-<br>
>  testsuite/tests/perf/compiler/T12545a.hs           |   3 +-<br>
>  testsuite/tests/perf/compiler/T13035.hs            |  13 +-<br>
>  testsuite/tests/perf/compiler/T13035.stderr        |   2 +-<br>
>  testsuite/tests/perf/compiler/T9872d.hs            | 186 ++++++--<br>
>  testsuite/tests/pmcheck/complete_sigs/T14253.hs    |   2 +-<br>
>  testsuite/tests/pmcheck/should_compile/T14086.hs   |   2 +-<br>
>  testsuite/tests/pmcheck/should_compile/T3927b.hs   |   8 +-<br>
>  testsuite/tests/polykinds/MonoidsTF.hs             |   4 +-<br>
>  testsuite/tests/polykinds/PolyKinds10.hs           |  27 +-<br>
>  testsuite/tests/polykinds/SigTvKinds3.hs           |   2 +-<br>
>  testsuite/tests/polykinds/T10134a.hs               |   3 +-<br>
>  testsuite/tests/polykinds/T10934.hs                |   6 +-<br>
>  testsuite/tests/polykinds/T11142.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T11399.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T11480b.hs               |  24 +-<br>
>  testsuite/tests/polykinds/T11520.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T11523.hs                |   1 -<br>
>  testsuite/tests/polykinds/T11554.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T11616.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T11640.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T11648.hs                |   4 +-<br>
>  testsuite/tests/polykinds/T11648b.hs               |   2 +-<br>
>  testsuite/tests/polykinds/T11821a.hs               |   2 +-<br>
>  testsuite/tests/polykinds/T12055.hs                |   4 +-<br>
>  testsuite/tests/polykinds/T12055a.hs               |   4 +-<br>
>  testsuite/tests/polykinds/T12593.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T12668.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T12718.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T13391.hs                |   7 -<br>
>  testsuite/tests/polykinds/T13391.stderr            |   7 -<br>
>  testsuite/tests/polykinds/T13625.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T13659.hs                |   4 +-<br>
>  testsuite/tests/polykinds/T13659.stderr            |   2 +-<br>
>  testsuite/tests/polykinds/T13738.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T13985.stderr            |  10 +-<br>
>  testsuite/tests/polykinds/T14174.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T14174a.hs               |   7 +-<br>
>  testsuite/tests/polykinds/T14209.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T14270.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T14450.hs                |   4 +-<br>
>  testsuite/tests/polykinds/T14450.stderr            |   2 +-<br>
>  testsuite/tests/polykinds/T14515.hs                |   3 +-<br>
>  testsuite/tests/polykinds/T14520.hs                |   4 +-<br>
>  testsuite/tests/polykinds/T14555.hs                |   4 +-<br>
>  testsuite/tests/polykinds/T14561.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T14563.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T14580.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T14710.stderr            |   8 -<br>
>  testsuite/tests/polykinds/T14846.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T14873.hs                |   3 +-<br>
>  testsuite/tests/polykinds/T15170.hs                |   2 +-<br>
>  testsuite/tests/polykinds/T5716.hs                 |   3 +-<br>
>  testsuite/tests/polykinds/T5716.stderr             |  10 +-<br>
>  testsuite/tests/polykinds/T6021.stderr             |   4 -<br>
>  testsuite/tests/polykinds/T6035.hs                 |   4 +-<br>
>  testsuite/tests/polykinds/T6039.stderr             |  12 +-<br>
>  testsuite/tests/polykinds/T6093.hs                 |   7 +-<br>
>  testsuite/tests/polykinds/T7404.stderr             |   4 -<br>
>  testsuite/tests/polykinds/T7594.hs                 |   6 +-<br>
>  testsuite/tests/polykinds/T7594.stderr             |   9 +-<br>
>  testsuite/tests/polykinds/T8566.hs                 |   8 +-<br>
>  testsuite/tests/polykinds/T8566.stderr             |   8 +-<br>
>  testsuite/tests/polykinds/T8566a.hs                |   8 +-<br>
>  testsuite/tests/polykinds/T8985.hs                 |   8 +-<br>
>  testsuite/tests/polykinds/T9222.hs                 |   3 +-<br>
>  testsuite/tests/polykinds/T9222.stderr             |   6 +-<br>
>  testsuite/tests/polykinds/all.T                    |   5 +-<br>
>  testsuite/tests/printer/Ppr040.hs                  |   2 +-<br>
>  testsuite/tests/printer/Ppr045.hs                  |   1 +<br>
>  testsuite/tests/rename/should_fail/T11592.hs       |   2 +-<br>
>  testsuite/tests/rename/should_fail/T13947.stderr   |   2 +-<br>
>  .../tests/simplCore/should_compile/T13025a.hs      |   6 +-<br>
>  testsuite/tests/simplCore/should_compile/T13658.hs |   2 +-<br>
>  .../tests/simplCore/should_compile/T14270a.hs      |   3 +-<br>
>  .../tests/simplCore/should_compile/T15186A.hs      |   2 +-<br>
>  testsuite/tests/simplCore/should_compile/T4903a.hs |  10 +-<br>
>  testsuite/tests/simplCore/should_run/T13750a.hs    |  13 +-<br>
>  testsuite/tests/th/T11463.hs                       |   2 +-<br>
>  testsuite/tests/th/T11484.hs                       |   2 +-<br>
>  testsuite/tests/th/T13642.hs                       |   2 +-<br>
>  testsuite/tests/th/T13781.hs                       |   2 +-<br>
>  testsuite/tests/th/T14060.hs                       |   2 +-<br>
>  testsuite/tests/th/T14869.hs                       |   2 +-<br>
>  testsuite/tests/th/T8031.hs                        |   4 +-<br>
>  testsuite/tests/th/TH_RichKinds2.hs                |   5 +-<br>
>  testsuite/tests/th/TH_RichKinds2.stderr            |   2 +-<br>
>  .../tests/typecheck/should_compile/SplitWD.hs      |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T10432.hs |   5 +-<br>
>  testsuite/tests/typecheck/should_compile/T11237.hs |   4 +-<br>
>  testsuite/tests/typecheck/should_compile/T11348.hs |   1 -<br>
>  testsuite/tests/typecheck/should_compile/T11524.hs |   1 -<br>
>  testsuite/tests/typecheck/should_compile/T11723.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T11811.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T12133.hs |   4 +-<br>
>  testsuite/tests/typecheck/should_compile/T12381.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T12734.hs |  38 +-<br>
>  .../tests/typecheck/should_compile/T12734a.hs      |  31 +-<br>
>  .../tests/typecheck/should_compile/T12734a.stderr  |   9 +-<br>
>  .../tests/typecheck/should_compile/T12785a.hs      |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T12911.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T12919.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T12987.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T13083.hs |   5 +-<br>
>  testsuite/tests/typecheck/should_compile/T13333.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T13337.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T13343.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T13458.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T13603.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T13643.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T13822.hs |   3 +-<br>
>  testsuite/tests/typecheck/should_compile/T13871.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T13879.hs |   2 +-<br>
>  .../tests/typecheck/should_compile/T13915a.hs      |   2 +-<br>
>  .../tests/typecheck/should_compile/T13915b.hs      |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T13943.hs |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/T14441.hs |   3 +-<br>
>  .../tests/typecheck/should_compile/T14934a.hs      |   3 +-<br>
>  testsuite/tests/typecheck/should_compile/all.T     |   4 +-<br>
>  testsuite/tests/typecheck/should_compile/tc191.hs  |   2 +-<br>
>  testsuite/tests/typecheck/should_compile/tc205.hs  |   4 +-<br>
>  testsuite/tests/typecheck/should_compile/tc269.hs  |   3 +-<br>
>  .../should_compile/valid_hole_fits_interactions.hs |   2 +-<br>
>  .../tests/typecheck/should_fail/ClassOperator.hs   |   4 +-<br>
>  .../typecheck/should_fail/ClassOperator.stderr     |  16 +-<br>
>  .../typecheck/should_fail/CustomTypeErrors04.hs    |   2 +-<br>
>  .../typecheck/should_fail/CustomTypeErrors05.hs    |   2 +-<br>
>  .../tests/typecheck/should_fail/LevPolyBounded.hs  |   2 +-<br>
>  testsuite/tests/typecheck/should_fail/T11313.hs    |   2 -<br>
>  .../tests/typecheck/should_fail/T11313.stderr      |   8 +-<br>
>  testsuite/tests/typecheck/should_fail/T11724.hs    |   2 +-<br>
>  testsuite/tests/typecheck/should_fail/T11963.hs    |  29 --<br>
>  .../tests/typecheck/should_fail/T11963.stderr      |  20 -<br>
>  testsuite/tests/typecheck/should_fail/T12648.hs    |   6 +-<br>
>  testsuite/tests/typecheck/should_fail/T12709.hs    |   3 +-<br>
>  .../tests/typecheck/should_fail/T12709.stderr      |   8 +-<br>
>  testsuite/tests/typecheck/should_fail/T12785b.hs   |   8 +-<br>
>  testsuite/tests/typecheck/should_fail/T12973.hs    |   2 +-<br>
>  testsuite/tests/typecheck/should_fail/T13105.hs    |   2 +-<br>
>  testsuite/tests/typecheck/should_fail/T13446.hs    |   4 +-<br>
>  testsuite/tests/typecheck/should_fail/T13909.hs    |   2 +-<br>
>  testsuite/tests/typecheck/should_fail/T13929.hs    |   2 +-<br>
>  .../tests/typecheck/should_fail/T13983.stderr      |   2 +-<br>
>  testsuite/tests/typecheck/should_fail/T14350.hs    |   2 +-<br>
>  testsuite/tests/typecheck/should_fail/T14904a.hs   |   2 +-<br>
>  testsuite/tests/typecheck/should_fail/T14904b.hs   |   2 +-<br>
>  testsuite/tests/typecheck/should_fail/T7645.hs     |   4 +-<br>
>  testsuite/tests/typecheck/should_fail/T7645.stderr |   5 +-<br>
>  testsuite/tests/typecheck/should_fail/all.T        |   1 -<br>
>  .../tests/typecheck/should_run/EtaExpandLevPoly.hs |   4 +-<br>
>  .../typecheck/should_run/KindInvariant.script      |   6 +-<br>
>  testsuite/tests/typecheck/should_run/T11120.hs     |   2 +-<br>
>  testsuite/tests/typecheck/should_run/T12809.hs     |   2 +-<br>
>  testsuite/tests/typecheck/should_run/T13435.hs     |   3 +-<br>
>  testsuite/tests/typecheck/should_run/TypeOf.hs     |   2 +-<br>
>  testsuite/tests/typecheck/should_run/TypeRep.hs    |   4 +-<br>
>  testsuite/tests/unboxedsums/sum_rr.hs              |   2 +-<br>
>  391 files changed, 1865 insertions(+), 1997 deletions(-)<br>
><br>
> Diff suppressed because of size. To see it, use:<br>
><br>
>     git diff-tree --root --patch-with-stat --no-color --find-copies-harder<br>
> --ignore-space-at-eol --cc d650729f9a0f3b6aa5e6ef2d5fba337f6f70fa60<br>
> _______________________________________________<br>
> ghc-commits mailing list<br>
> <a href="mailto:ghc-commits@haskell.org" target="_blank">ghc-commits@haskell.org</a><br>
> <a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-commits" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-commits</a><br>
><br>
_______________________________________________<br>
ghc-devs mailing list<br>
<a href="mailto:ghc-devs@haskell.org" target="_blank">ghc-devs@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs</a><br>
</blockquote></div></div></div>