// Test for message: array of function is invalid [16]
/* lint1-extra-flags: -X 351 */
typedef void function(void);
/* expect+1: error: array of function is invalid [16] */
function functions[] = {
/*
* XXX: The below warning should not assume that function is an
* integer type.
*/
/* expect+1: warning: invalid combination of integer 'int' and pointer 'pointer to void' for 'init' [183] */
(void *)0,
};