1 /* $NetBSD: msg_018.c,v 1.4 2022/04/05 23:09:19 rillig Exp $ */ 2 # 3 "msg_018.c" 3 4 // Test for message: illegal use of 'void' [18] 5 6 /* expect+1: error: void type for 'x' [19] */ 7 void x; 8 9 /* expect+1: error: cannot take size/alignment of void [146] */ 10 unsigned long sizeof_void = sizeof(void); 11 12 /* expect+2: error: illegal use of 'void' [18] */ 13 /* expect+1: warning: empty array declaration: void_array [190] */ 14 void void_array[]; 15