Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
eh1.C
blob: e7cdc27777ea51f82da97b46085313244313e401 [
file
] [
log
] [
blame
]
// { dg-do assemble }
class
C2
{
public
:
~
C2
();
C2 a
()
const
;
};
class
C3
{
public
:
C3
(
const
C2
&
c
);
};
class
C4
{
public
:
C3
*
foo
(
bool
b
,
const
C2
&
c
);
C2 d
()
const
;
};
C3
*
C4
::
foo
(
bool
b
,
const
C2
&
c
)
{
return
new
C3
(
b
?
d
().
a
()
:
c
);
}