mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
200 B
D
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);
|