// Test for message: cannot initialize function '%s' [24]
/* lint1-extra-flags: -X 351 */
typedef void (function)(void);
void
definition(void)
{
}
/* expect+3: error: cannot initialize function 'fn' [24] */
/* The following message is strange but does not occur in practice. */
/* expect+1: error: {}-enclosed or constant initializer of type 'function(void) returning void' required [181] */
function fn = definition;