blob: 1344511a6961e0b18bebbdb08f98446b3367faca [file] [log] [blame]
// PR c++/57573
struct A { };
struct B { A a; };
void f(A*) { }
template<class T>
void g()
{
B b;
f(&(b.a));
}