blob: 840de219ae97b5bb3b10cbae290f1a7972bf2021 [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);