aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/test17468.d
blob: 840de219ae97b5bb3b10cbae290f1a7972bf2021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PERMUTE_ARGS:
struct S
{
        const char* path;
        @disable this();
        this(const(char)* path)
        {
                this.path = path;
        }
}
const S CONST_S = S("/tmp".ptr);