void ccf(const char* str){}
void cwf(const wchar* str){}
void main()
{
ccf("aaa"); //ok
cwf("xxx"w); // error and why ?
}
riki via Digitalmars-d-learn Sat, 26 Dec 2015 19:35:45 -0800
void ccf(const char* str){}
void cwf(const wchar* str){}
void main()
{
ccf("aaa"); //ok
cwf("xxx"w); // error and why ?
}