Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.jason / ctor2.C
blobe396dc064f7adee0e38366e729b6807f3b2b40d9
1 // { dg-do assemble  }
2 // Bug: the reference to c in the initializer list doesn't get fixed up.
4 struct AP {
5     AP(unsigned char);
6 };
8 struct AI : AP {
9     AI(unsigned char);
12 AI::AI(unsigned char c)
13 : AP(c)
15   &c;