mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
181 B
D
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();
|