summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/diag10099.d
blob: a26ca85e19d7220e2d8abad1367893dcadb0ec9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
TEST_OUTPUT:
---
fail_compilation/diag10099.d(15): Error: variable diag10099.main.s default construction is disabled for type S
---
*/

struct S
{
    @disable this();
}

void main()
{
    S s;
}