home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!stanford.edu!ames!sun-barr!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!cis.ohio-state.edu!intellektik.INformatik.TH-darmstadt.DE!uli
- From: uli@intellektik.INformatik.TH-darmstadt.DE (Ulrich Grepel)
- Newsgroups: gnu.g++.bug
- Subject: internal compiler error 62 in gcc 2.3.3
- Date: 26 Jan 1993 21:59:41 -0500
- Organization: GNUs Not Usenet
- Lines: 26
- Sender: daemon@cis.ohio-state.edu
- Approved: bug-g++@prep.ai.mit.edu
- Distribution: gnu
- Message-ID: <9301261149.AA07014@kino.intellektik.informatik.th-darmstadt.de>
-
- The following code makes gcc 2.3.3 (configured for NeXT)
- to issue 'Internal compiler error 62.', 'Please report...'.
-
- You're welcome...
-
- Bye,
-
- Uli
-
- ------------------8<---------------------
- class A
- {
- protected:
- struct B
- {
- int c;
- };
- typedef struct B *D;
- };
-
- class E : public A
- {
- D f[10]; // this is the errorneous line
- };
- ------------------8<---------------------
-
-