home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_01 / 9n01091a < prev    next >
Text File  |  1990-11-05  |  141b  |  15 lines

  1. ----------
  2.  
  3. Listing 4
  4.  
  5. struct s
  6.     {
  7.     enum e {X, Y} b;
  8.     struct t {int i;} a;
  9.     };
  10.  
  11. enum e ee = Y;
  12. struct t tt;
  13. const int X = 10;
  14.  
  15.