[Issue 2893] New: Type const(int) does not have an Unsigned counterpart
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Apr 24 23:15:44 PDT 2009
http://d.puremagic.com/issues/show_bug.cgi?id=2893
Summary: Type const(int) does not have an Unsigned counterpart
Product: D
Version: 2.029
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: someanon at yahoo.com
$ cat tos.d
import std.conv;
void f() {
const int i;
to!string(i);
}
$ dmd -c tos.d
/dmd/linux/bin/../../src/phobos/std/traits.d(1011): Error: static assert "Type
const(int) does not have an Unsigned counterpart"
/dmd/linux/bin/../../src/phobos/std/traits.d(2454): Error: template instance
std.traits.Unsigned!(const(int)) error instantiating
/dmd/linux/bin/../../src/phobos/std/conv.d(2454): Error: Unsigned!(const(int))
is used as a type
--
More information about the Digitalmars-d-bugs
mailing list