www.digitalmars.com Home | Search | C & C++ | D | DMDScript | News Groups | index | prev | next
Archives

D Programming
D
D.gnu
digitalmars.D
digitalmars.D.bugs
digitalmars.D.dtl
digitalmars.D.dwt
digitalmars.D.announce
digitalmars.D.learn
digitalmars.D.debugger

C/C++ Programming
c++
c++.announce
c++.atl
c++.beta
c++.chat
c++.command-line
c++.dos
c++.dos.16-bits
c++.dos.32-bits
c++.idde
c++.mfc
c++.rtl
c++.stl
c++.stl.hp
c++.stl.port
c++.stl.sgi
c++.stlsoft
c++.windows
c++.windows.16-bits
c++.windows.32-bits
c++.wxwindows

digitalmars.empire
digitalmars.DMDScript

c++ - internal error: exp2 898

↑ ↓ ← "Steve Strand" <snstrand attbi.com> writes:
The program below causes "internal error: exp2 898".
All is well with "static" added to the first line in main.


template<class T>
class myclass {
    T data;
    static int si;
public:
    int getsi() {return si;}
};

int main() {
    int myclass<int>::si= 0;
    myclass<int> mci;
    int j= mci.getsi();
}
Feb 26 2003
↑ ↓ → Richard Grant <fractal clark.net> writes:
In article <b3jel3$6qh$1 digitaldaemon.com>, Steve Strand says...
The program below causes "internal error: exp2 898".
All is well with "static" added to the first line in main.

template<class T> class myclass { T data; static int si; public: int getsi() {return si;} }; int myclass<int>::si= 0; int main() { myclass<int> mci; int j= mci.getsi(); } myclass<int>::si should be defined at file scope. Richard
Feb 27 2003