You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(In reply to Andrej Mitrovic from comment #0)
> This is very ugly. I'm not sure whether it's a DMD bug or a Phobos bug> though.
It's an ugly dmd bug:
void main() {
pragma(msg, typeof(true ? char('x') : '_'));
pragma(msg, typeof(true ? wchar('x') : '_'));
pragma(msg, typeof(true ? dchar('x') : '_'));
}
Output:
char
int
uint
But perhaps I already reported this issue, please search it in Bugzilla.
Andrej Mitrovic (@AndrejMitrovic) reported this on 2014-05-06T19:22:40Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=12711
CC List
Description
The text was updated successfully, but these errors were encountered: