home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / PROG / CUJDEC93.ZIP / PUGH / INANDOUT.CPP next >
Encoding:
C/C++ Source or Header  |  1993-11-08  |  357 b   |  21 lines

  1. Listing 2:
  2.  
  3. template <class X >
  4. struct outside 
  5.     {
  6.     struct inside
  7.         {
  8.         X i;
  9.         X double_value() { return 2.0*i; } //inline COMPILES OK
  10.         X value();
  11.         } *list;
  12.     };
  13.  
  14. //COMPILER REGARDS THIS EXTERNAL FUNCTION BODY DEFINITION AS 
  15. SYNTAX ERROR:
  16. template <class X>
  17. X outside<X>::inside::value() 
  18.     {
  19.     return i;
  20.     }
  21.