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 / csyntax3.c < prev    next >
C/C++ Source or Header  |  1997-09-03  |  85b  |  13 lines

  1. typedef int a1;
  2.  
  3. a1 main()
  4. {
  5.   int x;
  6.   a1 a1;
  7.   
  8.   x = 3;
  9.   a1 = x;
  10.   return a1;
  11. }
  12.  
  13.