home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / gnu / g / bug / 2343 < prev    next >
Encoding:
Text File  |  1993-01-28  |  973 b   |  39 lines

  1. 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
  2. From: uli@intellektik.INformatik.TH-darmstadt.DE (Ulrich Grepel)
  3. Newsgroups: gnu.g++.bug
  4. Subject: internal compiler error 62 in gcc 2.3.3
  5. Date: 26 Jan 1993 21:59:41 -0500
  6. Organization: GNUs Not Usenet
  7. Lines: 26
  8. Sender: daemon@cis.ohio-state.edu
  9. Approved: bug-g++@prep.ai.mit.edu
  10. Distribution: gnu
  11. Message-ID: <9301261149.AA07014@kino.intellektik.informatik.th-darmstadt.de>
  12.  
  13. The following code makes gcc 2.3.3 (configured for NeXT)
  14. to issue 'Internal compiler error 62.', 'Please report...'.
  15.  
  16. You're welcome...
  17.  
  18. Bye,
  19.  
  20. Uli
  21.  
  22. ------------------8<---------------------
  23. class A
  24. {
  25. protected:
  26.     struct B
  27.     {
  28.         int c;
  29.     };
  30.     typedef struct B *D;
  31. };
  32.  
  33. class E : public A
  34. {
  35.     D f[10];                        // this is the errorneous line
  36. };
  37. ------------------8<---------------------
  38.  
  39.