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