blob: f2d9973772303955ea91e8dd451dc43356c17c7e [file] [log] [blame]
// { dg-do assemble }
// Testcase for instantiation with cv-qualified type
template<class T>
struct A
{
void foo();
};
template<class T> void A<T>::foo() { }
template class A<const int>;