blob: 340b58e73ec5f0fef4f0eece790d49fa26fcc5d3 [file] [log] [blame]
extern "C" void abort();
template <class T>
struct S
{
template <class U>
int f(U u);
};
template <>
template <>
int S<char>::f(int i) { return 1; }
int main()
{
S<char> sc;
if (sc.f(3) != 1)
abort();
}