Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
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
);
}