Char.isUpper undefined
"Neil Mitchell" <[email protected]> Sun, 30 Apr 2006 16:04:42 +0100
| Newsgroups | gmane.comp.lang.haskell.hugs.bugs |
|---|---|
| Message-ID | <[email protected]> |
Hi, In Hugs, :l Char :t isUpper -- works fine :t Data.Char.isUpper -- fine :t Char.isUpper -- fails Char> Char.isUpper 'a' ERROR - Undefined qualified variable "Char.isUpper" I guess this is the wrong behaviour? GHCi gets this right. When saved to a file, for example: -- import Char res = Char.isUpper 'a' -- This works fine. This is tested on WinHugs from CVS, if someone could test it on the Linux hugs that would be useful. Thanks Neil