Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
defarg4.C
blob: ace3ee2201be003a3b5a199702d205d28dad2862 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Origin: scott snyder <snyder@fnal.gov>
class
complex
{
public
:
complex
();
};
struct
MLC33
{
MLC33
(
const
complex
&
=
complex
()
);
};
void
EmptyClone
()
{
MLC33
();
}
void
makeM33
()
{
MLC33
();
}
void
Clone
()
{
MLC33
();
}