blob: 14aceaaf006e12ead670c5986bec9d4cea23dbe6 [file] [log] [blame]
// PERMUTE_ARGS:
struct S
{
const char* path;
@disable this();
this(const(char)* path)
{
this.path = path;
}
}
const S CONST_S = S("/tmp".ptr);