Lines Matching refs:testStr
3391 enum testStr = " hello ディラン"; variable
3392 char[testStr.length] s;
3394 foreach (c; testStr.byCodeUnit().byCodeUnit())
3398 assert(s == testStr);
3401 enum testStr = " hello ディラン"w; variable
3402 wchar[testStr.length] s;
3404 foreach (c; testStr.byCodeUnit().byCodeUnit())
3408 assert(s == testStr);
3411 enum testStr = " hello ディラン"d; variable
3412 dchar[testStr.length] s;
3414 foreach (c; testStr.byCodeUnit().byCodeUnit())
3418 assert(s == testStr);