blob: 381d055bfa7e70ae0c744ef5d874a3a3b8fcd450 [file] [log] [blame]
// PR c++/49298
template <class T, int T::*> struct B { };
template <class T> struct A
{
int i;
B<A,&A::i> b;
};