repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
compat
/
eh
/
spec3_x.C
blob
4c2aefd7c0eea7b5c986914551355e4149009a29
1
#include "spec3.h"
2
3
extern void func ()
4
#if __cplusplus < 201103L
5
throw (B,A)
6
#endif
7
;
8
9
void spec3_x (void)
10
{
11
try { func(); }
12
catch (A& a) { }
13
}