msg_149.c revision 1.3
1/*	$NetBSD: msg_149.c,v 1.3 2021/08/26 19:23:25 rillig Exp $	*/
2# 3 "msg_149.c"
3
4// Test for message: illegal function (type %s) [149]
5
6void
7example(int i)
8{
9	i++;
10	/* expect+1: error: illegal function (type int) [149] */
11	i(3);
12}
13