msg_149.c revision 1.4
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
6void
7example(int i)
8{
9 i++;
10 /* expect+1: error: cannot call 'int', must be a function [149] */
11 i(3);
12}
13