// PR c++/37256 // { dg-options "-O" } template struct B { T_ f(); }; extern template class B; void f() { B t; t.f(); }