#5518: Some unicode symbols are not allow in literal characters or strings
-------------------------------+--------------------------------------------
Reporter: ertai | Owner:
Type: bug | Status: infoneeded
Priority: normal | Milestone:
Component: Compiler | Version: 7.0.3
Keywords: | Testcase:
Blockedby: | Difficulty:
Os: Linux | Blocking:
Architecture: x86_64 (amd64) | Failure: None/Unknown
-------------------------------+--------------------------------------------
Comment(by judahj):
I could reproduce the issue with ghc-7.0.3 and ghc-7.0.4.
I looked into this since it seemed to be affecting Haskeline too. The
cause (for both problems) was that older versions of GHC support a older
version of Unicode:
{{{
$ ghc-7.0.3 -e "Data.Char.generalCategory '\8342'"
NotAssigned
$ ghc-7.0.4 -e "Data.Char.generalCategory '\8342'"
NotAssigned
$ ghc-7.2.1 -e "Data.Char.generalCategory '\8342'"
ModifierLetter
}}}
So if you want to use those characters, you will probably need to upgrade
to ghc-7.2.1.
--
Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/5518#comment:4>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
_______________________________________________
Glasgow-haskell-bugs mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs