2017-06-14 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / pr57573.C
blob1344511a6961e0b18bebbdb08f98446b3367faca
1 // PR c++/57573
3 struct A { };
4 struct B { A a; };
6 void f(A*) { }
8 template<class T>
9 void g()
11   B b;
12   f(&(b.a));