blob: 65e683cf8fdde6521d9ae9bfb98b145583c23df9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
int count;
class Foo {
public:
Foo() { ++count; }
Foo(const Foo&) { ++count; }
~Foo() { --count; }
};
main() {
try {
throw Foo();
}
catch (Foo& object) {
if (count == 1)
return 0;
}
return 1;
}
|