]> andersk Git - splint.git/blob - test/decl.c
1fc1c1d0cca524d64abd5ccb5863436c7d16accd
[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.022995 seconds and 3 git commands to generate.