home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_07 / 1107126a < prev    next >
Text File  |  1993-05-06  |  201b  |  19 lines

  1. class X
  2.     {
  3. public:
  4.     int i;
  5.     static char *s;
  6.     class Y
  7.         {
  8.     public:
  9.         void f();
  10.         };
  11.     };
  12.  
  13. void X::Y::f()
  14.     {
  15.     s = 0;    // ok, X::s is static
  16.     i = 0;    // error, X::i is non-static
  17.     }
  18.  
  19.