blob: 4e0a435dd0b55a706c2a9057c40580528891f97e [file] [log] [blame]
template<class T> struct A{
typedef T& Type;
};
template<class T> void f(const typename A<T>::Type){}
template <> void f<int>(const typename A<int>::Type){}