home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lclint.zip / lclint-2_3h-os2-bin.zip / test / decl.c < prev    next >
C/C++ Source or Header  |  1997-09-03  |  127b  |  9 lines

  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. }
  9.