]> andersk Git - splint.git/blame_incremental - test/decl.c
Fixed configuration problem (hopefully).
[splint.git] / test / decl.c
... / ...
CommitLineData
1int test(int);
2
3int main()
4{
5 int (*y)(int) = &test;
6 int (**x)(int) = &y;
7 x(10); /* called object is not a function */
8}
This page took 0.030957 seconds and 5 git commands to generate.