[Issue 2911] New: Odd anomaly of implicit conversions
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed Apr 29 12:37:12 PDT 2009
http://d.puremagic.com/issues/show_bug.cgi?id=2911
Summary: Odd anomaly of implicit conversions
Product: D
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: andrei at metalanguage.com
void main() {
char a;
wchar c;
a = c;
const wchar c1;
a = c1;
}
The first conversion makes it, the second doesn't. Either both should succeed
or both should fail. Obviously, the right choice is to make both fail. This
completely messes some generic code I'm trying to write. I need to special case
not only around the bug, but also around the bug in the bug.
--
More information about the Digitalmars-d-bugs
mailing list