* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / extern_template-3.C
blob1b7ad0e01982d5b41877a2f3d6d4bc5588ca2c33
1 // PR c++/37256
2 // { dg-options "-O" }
4 template <typename T_>
5 struct B
7   T_ f();
8 };
10 extern template class B<int>;
12 void f()
14   B<int> t;
15   t.f();