blob: 18802fcd7bcec29a9b1c4596951ed689f741e0ff [file] [log] [blame]
// Build don't link:
typedef const int cint;
template<class T>
class A
{
public:
T f(cint i);
};
template <class T>
T A<T>::f(cint i)
{
}
int main()
{
A<int> a;
}