home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 355_03 / slk3.exe / TEST / TST / FNCALL.TST < prev    next >
Text File  |  1989-02-16  |  178b  |  28 lines

  1. typedef long g();
  2.  
  3. g x()
  4. {
  5.     int x;
  6.     x = 5;
  7.     return x;
  8. }
  9.  
  10. f2(x)
  11. int x;
  12. {
  13. }
  14.  
  15. f(x)
  16. long x;
  17. {
  18.     return 3;
  19. }
  20.  
  21. bad_decl()
  22. {
  23.     int x;
  24.     f(x);
  25.     f2(x);
  26.     return;
  27. }
  28.