dmd/compiler/test/compilable/test18115.d
2022-07-09 18:53:07 +02:00

10 lines
181 B
D

// https://issues.dlang.org/show_bug.cgi?id=18115
int test()
{
if (test.stringof.length > 6 &&
test.stringof[$-7..$] == "1234567") {}
return 0;
}
enum a = test();