From-SVN: r22066
This commit is contained in:
Mark Mitchell 1998-08-28 18:06:38 +00:00
parent 21d886ac9b
commit c296fce54e
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ struct S {
};
template <class T, class U, int I>
void f(T, U)
S<T,I>::X f(T, U)
{
S<T, I>::X();
}
template void f<int, double, 3>(int, double);
template S<int, double>::X f<int, double, 3>(int, double);