(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test17468.d
// PERMUTE_ARGS:
struct S
{
        const char* path;
        @disable this();
        this(const(char)* path)
        {
                this.path = path;
        }
}
const S CONST_S = S("/tmp".ptr);