msg_019.c revision 1.7
1/*	$NetBSD: msg_019.c,v 1.7 2023/03/28 14:44:34 rillig Exp $	*/
2# 3 "msg_019.c"
3
4// Test for message: void type for '%s' [19]
5
6/* lint1-extra-flags: -X 351 */
7
8/* expect+1: error: void type for 'global_variable' [19] */
9void global_variable;
10
11/* expect+2: error: void type for 'unit_variable' [19] */
12/* expect+1: warning: static variable 'unit_variable' unused [226] */
13static void unit_variable;
14
15/* expect+3: warning: argument 'parameter' unused in function 'function' [231] */
16/* expect+2: error: void parameter 'parameter' cannot have name [61] */
17void
18function(void parameter)
19{
20	/* expect+1: error: void type for 'local_variable' [19] */
21	void local_variable;
22}
23