Changeset 835 for trunk/testcase/throw.h


Ignore:
Timestamp:
Oct 24, 2003, 9:19:00 AM (22 years ago)
Author:
bird
Message:

Extended testcase.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/testcase/throw.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r834 r835  
     1class expt
     2{
     3private:
     4    int i;
     5    const char *psz;
     6
     7public:
     8    expt(int i, const char *psz);
     9    int get() const;
     10};
     11
    112class bar
    213{
     
    617    bar() throw(int);
    718    int get() const;
     19    int getThrow() const throw(expt);
    820};
    921
Note: See TracChangeset for help on using the changeset viewer.