blob: 1d257a2e7df24a04b49f2e2b0f3483a515393ac4 [file] [log] [blame]
// Testcase for instantiation with cv-qualified type
// Build don't link:
template<class T>
struct A
{
void foo();
};
template<class T> void A<T>::foo() { }
template class A<const int>;