source: trunk/src/gcc/gcc/testsuite/g++.old-deja/g++.law/except4.C@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 520 bytes
Line 
1// Build don't link:
2// Special g++ Options: -fexceptions
3// GROUPS passed exceptions
4// except file
5// Message-Id: <9307071456.AA05275@davinci.hio.hen.nl>
6// From: akkersdi@hio.hen.nl
7// Subject: exceptions broken
8// Date: Wed, 7 Jul 1993 16:56:52 +0200 (MET DST)
9
10class ball {
11public: int dummy;
12 ball() : dummy(0) { ; }
13};
14
15void pitcher()
16{
17 throw ball();
18}
19
20void catcher()
21{
22 try // <=== gcc 2.* fails here
23 {
24 pitcher();
25 }
26 catch (ball) {
27 /* sleepy catcher doing nothing */ ;
28 }
29}
30
31int main()
32{
33 catcher();
34}
Note: See TracBrowser for help on using the repository browser.