• Home
  • Raw
  • Download

Lines Matching refs:automatic

35 …U0 u0; // expected-error {{cannot declare an automatic variable of type 'U0' since it is a union t…
36 …U0 u1 = ug0; // expected-error {{cannot declare an automatic variable of type 'U0' since it is a u…
37 …U0 u2 = { g0 }; // expected-error {{cannot declare an automatic variable of type 'U0' since it is …
38 …U0 u3 = { .f1 = g0 }; // expected-error {{cannot declare an automatic variable of type 'U0' since …
39 …S0 s0; // expected-error {{cannot declare an automatic variable of type 'S0' since it contains a u…
40 …S0 s1 = sg0; // expected-error {{declare an automatic variable of type 'S0' since it contains a un…
41 …S0 s2 = { ug0 }; // expected-error {{cannot declare an automatic variable of type 'S0' since it co…
42 …S0 s3 = { .f0 = ug0 }; // expected-error {{cannot declare an automatic variable of type 'S0' since…
43 …S0 s4 = { .f1 = g0 }; // expected-error {{cannot declare an automatic variable of type 'S0' since …
56 …const U0 *t0 = &(U0){ .f0 = g0 }; // expected-error {{cannot construct an automatic compound liter…
57 …const U0 *t1 = &(U0){ .f1 = g0 }; // expected-error {{cannot construct an automatic compound liter…
58 …const S0 *t2 = &(S0){ .f0 = ug0 }; // expected-error {{cannot construct an automatic compound lite…
59 …const S0 *t3 = &(S0){ .f1 = g0 }; // expected-error {{cannot construct an automatic compound liter…
67 …U0 t0; // expected-error {{cannot declare an automatic variable of type 'U0' since it is a union t…
68 …S0 t1; // expected-error {{cannot declare an automatic variable of type 'S0' since it contains a u…
69 …__block U0 t2; // expected-error {{cannot declare an automatic variable of type 'U0' since it is a…
70 …__block S0 t3; // expected-error {{cannot declare an automatic variable of type 'S0' since it cont…