Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:S1

86   struct S1 {
87 S1();
89 S1 makeS1();
90 void testS1(S1 a) {
92 S1 x = makeS1(); // expected-warning {{unused variable 'x'}}
95 S1 y;
98 S1 z = a; // expected-warning {{unused variable 'z'}}
117 S1 m;
128 struct S1 {
129 ~S1();
132 S2(const S1&);
135 S2 s((S1()));