blob: 5a01a44956708e19501b7a09c71cd03311557dfb [file] [log] [blame]
template<class T>
void f(const T&)
{
struct B {
void g (T);
};
B b;
}
void g()
{
f(42);
}