Commit 57224090 by Jason Merrill

tweak

From-SVN: r34367
parent b9d969b7
......@@ -8,8 +8,9 @@ template <class T> void f (T) { }
extern template void f (int);
template <class T> struct A {
void f () { }
void f ();
};
template <class T> void A<T>::f () { }
extern template struct A<int>;
int main ()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment