VisualD cannot list member for (utf-8 char)

sdvcn via Digitalmars-d-ide digitalmars-d-ide at puremagic.com
Tue Dec 2 18:25:28 PST 2014


enum eNU{
	中国=99,
	china=666,

}

void 执行()
{
	eNU cc = eNU.中国;//VisualD error,not list member
	writeln("Hello D-World!");
}

int main(string[] argv)
{
执行();
}

Compile is good;


More information about the Digitalmars-d-ide mailing list