root/tests/usr.bin/xlint/lint1/msg_044.c
/*      $NetBSD: msg_044.c,v 1.7 2023/08/26 10:43:53 rillig Exp $       */
# 3 "msg_044.c"

// 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;
}