blob: 1b7ad0e01982d5b41877a2f3d6d4bc5588ca2c33 [file] [log] [blame]
// PR c++/37256
// { dg-options "-O" }
template <typename T_>
struct B
{
T_ f();
};
extern template class B<int>;
void f()
{
B<int> t;
t.f();
}