(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test18115.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();