1 // This actually isn't allowed in C99, but sparse and gcc will take it:
7 enum Foo
*pefoo
; // Pointer to incomplete type
8 struct Foo
; // Forward declaration
9 struct Foo
*psfoo
; // Pointer to incomplete type
11 struct Foo
{ int foo
; }; // Local definition.
12 struct Foo foo
; // variable declaration.
19 * check-name: struct namespaces #1