blob: 4f793d40e530bc6a91c6e24ec16aad4aa4ed07bc [file] [log] [blame]
template <class T> struct A {
template <class U> void f (U u);
};
A<int> a;
template <class T> template <class U> void A<T>::f (U u) { }
int main()
{
a.f (24);
}