OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / opeq2.C
1 // { dg-do assemble  }
2 // Bug: default operator= is not being generated properly.
3 // PRMS Id: 3525
4
5 struct ccUnwind 
6 {
7     ccUnwind& operator = (const ccUnwind&);
8 };
9
10 struct ccEllipseUnit
11
12     ccEllipseUnit () {}
13 };
14
15 struct ccEllipse : ccUnwind  
16 {   
17     ccEllipse ();
18     ccEllipse (const ccEllipseUnit&);
19
20 };
21
22 void foo ()
23 {
24     ccEllipse e;
25     e = ccEllipseUnit();        // { dg-bogus "" } assignment not defined
26 }