home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_01 / 9n01091a < prev    next >
Encoding:
Text File  |  1995-11-01  |  141 b   |  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.