summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/offset2.C
blob: a598d433431745a84af0c177742848d885da95d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PRMS Id: 5070 (testcase 2)

int status = 1;

struct foo {
  foo& operator= (const foo&) { status = 0; }
};

struct xx {
  foo a;
};

struct yy : public xx {
  yy(foo& a) { xx::a = a; }
};

int main()
{
  foo f;
  yy y (f);

  return status;
}