root/tests/usr.bin/xlint/lint1/msg_307.c
/*      $NetBSD: msg_307.c,v 1.5 2023/07/07 19:45:22 rillig Exp $       */
# 3 "msg_307.c"

// Test for message: static variable '%s' set but not used [307]

/* lint1-extra-flags: -X 351 */

/* expect+1: warning: static variable 'set_but_not_used' set but not used [307] */
static int set_but_not_used;

static int only_incremented;

void function(void)
{
        set_but_not_used = 3;
        only_incremented++;
}