xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_001.c (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /*	$NetBSD: msg_001.c,v 1.4 2021/01/31 11:23:01 rillig Exp $	*/
2 # 3 "msg_001.c"
3 
4 // Test for message: old style declaration; add 'int' [1]
5 
6 old_style = 1;			/* expect: [1] */
7 
8 int new_style = 1;
9