Sign in
llvm
/
llvm-archive
/
1017b91041efc7935975940fdfb2b7c1b1c052a6
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
g++.dg
/
eh
/
throw1.C
blob: 6a3cb2c35cae681eadc1114d6e9e50c24d4610f8 [
file
] [
log
] [
blame
]
class
S
{
public
:
S
(){}
};
int
foo
(
char
*
m1
)
{
throw
(
m1
?
S
()
:
S
());
}