OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / defarg4.C
1 // { dg-do assemble  }
2 // Origin: scott snyder <snyder@fnal.gov>
3
4 class complex
5 {
6 public:
7   complex();
8 };
9
10 struct MLC33
11 {
12   MLC33( const complex& = complex() );
13 };
14
15 void EmptyClone()
16 {
17   MLC33();
18 }
19
20 void makeM33()
21 {
22   MLC33();
23 }
24
25 void Clone()
26 {
27   MLC33();
28 }