OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / offset2.C
1 // { dg-do run  }
2 // PRMS Id: 5070 (testcase 2)
3
4 int status = 1;
5
6 struct foo {
7   foo& operator= (const foo&) { status = 0; return *this; }
8 };
9
10 struct xx {
11   foo a;
12 };
13
14 struct yy : public xx {
15   yy(foo& a) { xx::a = a; }
16 };
17
18 int main()
19 {
20   foo f;
21   yy y (f);
22
23   return status;
24 }