Home | History | Annotate | Download | only in Sema

Lines Matching full:static

5 static struct a x2; // expected-warning{{tentative definition of variable with internal linkage has incomplete non-array type 'struct a'}}
8 static struct a x2_okay;
27 static int i5; // expected-error{{static declaration of 'i5' follows non-static declaration}}
29 static int i2 = 5; // expected-note 1 {{previous definition is here}}
30 int i2 = 3; // expected-error{{non-static declaration of 'i2' follows static declaration}}
32 static int i3 = 5;
53 static int i6; // expected-error{{static declaration of 'i6' follows non-static declaration}}
63 static int a0[];
64 static int b0;
66 static int a0[] = { 4 };
67 static int b0 = 5;