blob: d356a4ed55a59fd34a4c5fc72d499c770cdfdbea [file] [log] [blame]
// Special g++ Options: -ansi -pedantic-errors -w
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);
}