blob: 6da9bd51c96e9f48ccd971efaf3bbd4327b02073 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
struct none { int i[50]; };
class my_ex { } a;
none throw_it() {
throw 1;
}
int main() {
try {
none n = throw_it();
} catch (int ex) {
return 0;
}
}
|