msg_019.c revision 1.5
1/* $NetBSD: msg_019.c,v 1.5 2022/06/15 20:18:31 rillig Exp $ */ 2# 3 "msg_019.c" 3 4// Test for message: void type for '%s' [19] 5 6/* expect+1: error: void type for 'global_variable' [19] */ 7void global_variable; 8 9/* expect+2: error: void type for 'unit_variable' [19] */ 10/* expect+1: warning: static variable 'unit_variable' unused [226] */ 11static void unit_variable; 12 13/* expect+3: warning: argument 'parameter' unused in function 'function' [231] */ 14/* expect+2: error: void parameter cannot have name: parameter [61] */ 15void 16function(void parameter) 17{ 18 /* expect+1: error: void type for 'local_variable' [19] */ 19 void local_variable; 20} 21