blob: a348977f50ef675f3aa63f53869c1e3dab8b77ae [file] [log] [blame]
Richard Smith1d0c9a82012-02-14 21:14:13 +00001// RUN: %clang_cc1 -std=c++11 -verify %s
2struct A { // expected-note 2{{candidate}}
3 A(int); // expected-note {{candidate}}
4 int n;
5};
6int a = A().n; // expected-error {{no matching constructor}}
7
8struct B {
9 B() = delete; // expected-note {{here}}
10 int n;
11};
12int b = B().n; // expected-error {{call to deleted}}
13
14struct C { // expected-note {{here}}
15 B b;
16};
Douglas Gregore4e68d42012-02-15 19:33:52 +000017int c = C().b.n; // expected-error {{call to implicitly-deleted default}}
Richard Smith1d0c9a82012-02-14 21:14:13 +000018
Douglas Gregore4e68d42012-02-15 19:33:52 +000019struct D { // expected-note {{defined here}}
20 D() = default; // expected-note {{declared here}}
Richard Smith1d0c9a82012-02-14 21:14:13 +000021 B b;
22};
Douglas Gregore4e68d42012-02-15 19:33:52 +000023int d = D().b.n; // expected-error {{call to implicitly-deleted default}}
Richard Smith1d0c9a82012-02-14 21:14:13 +000024
25struct E {
26 E() = default;
27 int n;
28};
29int e = E().n; // ok
30
31struct F {
32 F();
33 int n;
34};
35int f = F().n; // ok
36
37union G { // expected-note {{here}}
38 F f;
39};
Douglas Gregore4e68d42012-02-15 19:33:52 +000040int g = G().f.n; // expected-error {{call to implicitly-deleted default}}
Richard Smith1d0c9a82012-02-14 21:14:13 +000041
42struct H {
43 int n;
44private:
45 H(); // expected-note {{here}}
46};
47int h = H().n; // expected-error {{private constructor}}
48
49struct I { // expected-note {{here}}
50 H h;
51};
Douglas Gregore4e68d42012-02-15 19:33:52 +000052int i = I().h.n; // expected-error {{call to implicitly-deleted default}}
Richard Smith1d0c9a82012-02-14 21:14:13 +000053
54struct J {
55 J();
56 virtual int f();
57 int n;
58};
59int j1 = J().n; // ok
60int j2 = J().f(); // ok
61
62union K { // expected-note 2{{here}}
63 J j;
64 int m;
65};
Douglas Gregore4e68d42012-02-15 19:33:52 +000066int k1 = K().j.n; // expected-error {{call to implicitly-deleted default}}
67int k2 = K().j.f(); // expected-error {{call to implicitly-deleted default}}