Lines Matching +full:0 +full:xc
24 void test_unqual_references(struct X x, const struct X xc) { in test_unqual_references() argument
25 // expected-note@-1 3{{variable 'xc' declared const here}} in test_unqual_references()
26 x.i = 0; in test_unqual_references()
30 x.f3 = 0; // expected-error{{no member named 'f3'}} in test_unqual_references()
31 x.a = 0; in test_unqual_references()
33 …xc.d = 0.0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const str… in test_unqual_references()
34 …xc.f = 0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const struc… in test_unqual_references()
35 …xc.a = 0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const struc… in test_unqual_references()
65 int_val2 = 0; // expected-error{{use of undeclared identifier}} in f()
74 i = 0; // expected-error{{use of undeclared identifier}} in g()
103 int tmp = (a_struct) { .x = 0 }; // expected-error {{initializing 'int' with an expression of incom…