Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
eh.C
blob: 13cbb730c7607ced6cf40323d9e12a626e247218 [
file
] [
log
] [
blame
]
// { dg-do assemble }
class
foo
{
public
:
~
foo
();
foo
&
operator
=(
const
foo
&);
foo e
()
const
;
};
class
bar
{
public
:
foo d
()
const
;
};
struct
x
{
foo a
;
bar
*
b
;
};
void
baz
(
x
*
f
,
int
ic
)
{
f
->
a
=
ic
?
f
->
b
->
d
().
e
()
:
f
->
b
->
d
();
}