[Issue 11735] pragma(msg, ...) fails to print wstring, dstring
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Mar 14 10:38:38 PDT 2014
https://d.puremagic.com/issues/show_bug.cgi?id=11735
Andrej Mitrovic <andrej.mitrovich at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
CC| |andrej.mitrovich at gmail.com
Resolution|FIXED |
--- Comment #2 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2014-03-14 10:38:37 PDT ---
The fix is incomplete, the following doesn't print properly:
void main()
{
enum a = "foo";
enum b = "foo"w;
enum c = "foo"d;
pragma(msg, a); // foo
pragma(msg, b); // f
pragma(msg, c); // f
}
--
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list