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
strub: enable conditional support
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr33589-2.C
blob
325892bc684c13d1a0e2e6ba9f5c7033a024c403
1
// { dg-do compile }
2
3
void f(void*) throw();
4
5
void somefunction()
6
{
7
try {
8
void (*g)(void*) = (void (*)(void*))f;
9
void (*g2)(int*) = (void (*)(int*))g;
10
g2(0);
11
} catch (...)
12
{throw;}
13
}