]> andersk Git - splint.git/blame - test/decl.c
Initial revision
[splint.git] / test / decl.c
CommitLineData
885824d3 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.042963 seconds and 5 git commands to generate.