Lines Matching refs:A
20 struct A { int x; }; argument
21 A a;
22 A b = A();
23 A c = { 10 };
24 A d = { opaque_int() }; // expected-warning {{global constructor}}
25 A e = A(A());
26 A f = A(a); // expected-warning {{global constructor}}
27 A g(a); // expected-warning {{global constructor}}
28 A h((A())); // elided
29 A i((A(A()))); // elided
33 struct A { A(); }; struct
34 A a; // expected-warning {{global constructor}}
35 A b[10]; // expected-warning {{global constructor}}
36 A c[10][10]; // expected-warning {{global constructor}}
38 A &d = a;
39 A &e = b[5];
40 A &f = c[5][7];
44 struct A { ~A(); }; struct
45 A a; // expected-warning {{global destructor}}
46 A b[10]; // expected-warning {{global destructor}}
47 A c[10][10]; // expected-warning {{global destructor}}
49 A &d = a;
50 A &e = b[5];
51 A &f = c[5][7];
61 struct A { A(); }; struct
64 static A a; in f1()
67 static A& a = *new A; in f2()
72 struct A { ~A(); }; struct
75 static A a; in f1()
78 static A& a = *new A; in f2()
100 struct A { int &a; }; struct
102 A b = { a };
106 struct A { ~A() = default; }; struct
107 A a;