blob: e396dc064f7adee0e38366e729b6807f3b2b40d9 [file] [log] [blame]
// { dg-do assemble }
// Bug: the reference to c in the initializer list doesn't get fixed up.
struct AP {
AP(unsigned char);
};
struct AI : AP {
AI(unsigned char);
};
AI::AI(unsigned char c)
: AP(c)
{
&c;
}