Lines Matching refs:testStr
3722 enum testStr = " hello ディラン";
3723 char[testStr.length] s;
3725 foreach (c; testStr.byCodeUnit().byCodeUnit())
3729 assert(s == testStr);
3732 enum testStr = " hello ディラン"w;
3733 wchar[testStr.length] s;
3735 foreach (c; testStr.byCodeUnit().byCodeUnit())
3739 assert(s == testStr);
3742 enum testStr = " hello ディラン"d;
3743 dchar[testStr.length] s;
3745 foreach (c; testStr.byCodeUnit().byCodeUnit())
3749 assert(s == testStr);