d: Merge upstream dmd 47871363d, druntime, c52e28b7, phobos 99e9c1b77.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test17468.d
blob14aceaaf006e12ead670c5986bec9d4cea23dbe6
1 // PERMUTE_ARGS:
2 struct S
4 const char* path;
5 @disable this();
6 this(const(char)* path)
8 this.path = path;
11 const S CONST_S = S("/tmp".ptr);