repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb31.C
blob
1e3c8f02d16de477bc020984ddc53165bc81fa34
1
// { dg-do run }
2
#include<iostream>
3
4
int main() {
5
try {
6
throw 1;
7
} catch(...) {
8
try {
9
throw;
10
} catch(int) {
11
}
12
try {
13
throw;
14
} catch(int) {
15
}
16
}
17
return 0;
18
}
19
20