// Test for message: declaration of '%s %s' introduces new type in C90 or later [44]
/* lint1-extra-flags: -X 351 */
/* expect+1: warning: struct 'tag' never defined [233] */
struct tag;
void declaration(struct tag *);
void definition(void) {
/* expect+2: warning: declaration of 'struct tag' introduces new type in C90 or later [44] */
/* expect+1: warning: struct 'tag' never defined [233] */
struct tag;
}