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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-11-08
|
357 b
|
21 lines
Listing 2:
template <class X >
struct outside
{
struct inside
{
X i;
X double_value() { return 2.0*i; } //inline COMPILES OK
X value();
} *list;
};
//COMPILER REGARDS THIS EXTERNAL FUNCTION BODY DEFINITION AS
SYNTAX ERROR:
template <class X>
X outside<X>::inside::value()
{
return i;
}