2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / template23.C
blobf2d9973772303955ea91e8dd451dc43356c17c7e
1 // { dg-do assemble  }
2 // Testcase for instantiation with cv-qualified type
4 template<class T>
5 struct A
7     void foo();
8 };
10 template<class T> void A<T>::foo() { }
12 template class A<const int>;