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 / csyntax14.c < prev    next >
Text File  |  1997-09-03  |  171b  |  13 lines

  1. typedef int atom;
  2.  
  3. typedef struct atomrep {
  4.         atom atom;
  5.         struct atomrep *link;
  6. } atomrep;
  7.  
  8. int f()
  9. {
  10. /*@-varuse -noreturn*/
  11.   atomrep * x = (atomrep *) 0;
  12. }
  13.