dmd/compiler/test/compilable/test17468.d
2022-07-09 18:53:07 +02:00

11 lines
200 B
D

// PERMUTE_ARGS:
struct S
{
const char* path;
@disable this();
this(const(char)* path)
{
this.path = path;
}
}
const S CONST_S = S("/tmp".ptr);