Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:constructor

7 struct NonAggr1 { // expected-note 2 {{candidate constructor}}
8 NonAggr1(int, int) { } // expected-note {{candidate constructor}}
14 struct NonAggr2 : public Base { // expected-note 3 {{candidate constructor}}
18 class NonAggr3 { // expected-note 3 {{candidate constructor}}
22 struct NonAggr4 { // expected-note 3 {{candidate constructor}}
27 NonAggr1 na1 = { 17 }; // expected-error{{no matching constructor for initialization of 'NonAggr1'}}
28 NonAggr2 na2 = { 17 }; // expected-error{{no matching constructor for initialization of 'NonAggr2'}}
29 NonAggr3 na3 = { 17 }; // expected-error{{no matching constructor for initialization of 'NonAggr3'}}
30 NonAggr4 na4 = { 17 }; // expected-error{{no matching constructor for initialization of 'NonAggr4'}}
65 A as2[1] = { 1 }; // expected-error {{copying array element of type 'A' invokes deleted constructor}}
68 B b2 = { 1 }; // expected-error {{copying member subobject of type 'A' invokes deleted constructor}}