Changeset 837 for trunk/testcase/throw2.cpp
- Timestamp:
- Oct 24, 2003, 9:53:30 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/throw2.cpp
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r836 r837 4 4 bar::bar(int i) : i(i) 5 5 { 6 fprintf(stderr, "bar::constructor 1\n");6 dfprintf((stderr, "bar::constructor 1\n")); 7 7 } 8 8 9 9 bar::bar() throw(int) : i(1) 10 10 { 11 fprintf(stderr, "bar::constructor 2\n");11 dfprintf((stderr, "bar::constructor 2\n")); 12 12 throw(1); 13 13 } … … 28 28 expt::expt(int i, const char *psz) : i(i), psz(psz) 29 29 { 30 31 30 } 32 31 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.