xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_149.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_149.c,v 1.4 2022/06/22 19:23:18 rillig Exp $	*/
2 # 3 "msg_149.c"
3 
4 // Test for message: cannot call '%s', must be a function [149]
5 
6 void
7 example(int i)
8 {
9 	i++;
10 	/* expect+1: error: cannot call 'int', must be a function [149] */
11 	i(3);
12 }
13