0030-krtypes.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
0030-krtypes.c (160B)
---
1 /*
2 PATTERN:
3 0030-krtypes.c:15: error: too many arguments in function call
4 .
5 */
6
7 static void foo()
8 {
9 }
10
11 void bar();
12
13 int main()
14 {
15 foo(0);
16 bar(0);
17 return 0;
18 }