]> andersk Git - splint.git/blob - test/decl.c
Removed .lh .lcs .lcd files in test directory from distribution tar ball as suggested...
[splint.git] / test / decl.c
1 int test(int);
2
3 int 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.055349 seconds and 5 git commands to generate.