aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/except3.C
blob: 553da6b6d68550c33d379fcfa02a43840b40b7bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Build don't link: 
// Special g++ Options: -fexceptions
// GROUPS passed exceptions
// except file
// Message-Id: <9211301118.AA09810@ss670mp.geco.slb.com>
// From: willoch@ss670mp.oslo.sgp.slb.com (thorbjorn willoch)
// Subject: -fansi-exceptions bug
// Date: Mon, 30 Nov 92 11:18:05 GMT

extern "C" int printf(const char *, ...);

class Vector
{
    int* p;
    int sz;
  public:
    Vector(int s) { p = new int[sz=s]; }
    ~Vector() {delete [] p; }
    int size() {return sz; }
    class Range{};
 
 
    int& operator[](int i);
};
 
int& Vector::operator[](int i)
{
    if(0<=i && i<sz) return p[i];
    throw Range();
}
 
void do_something(Vector& v)
{
    int i = v[v.size()+10];
}
 
main()
{
    Vector v(10);
 
    try
    {
        do_something(v);
    }
 
    catch (Vector::Range)
    {
        printf("Range error exception\n");
    }
}