blob: 1a5cabe67a158e11b3e1afde45df101d2938efe3 [file] [log] [blame]
struct S
{
template <class U>
struct Y {
template <class T>
void foo(T t);
};
};
template <>
template <>
void S::Y<char>::foo<int>(int i) { }
int main()
{
S::Y<char> s;
s.template foo<int>(3.0);
}