FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / template23.C
blob1d257a2e7df24a04b49f2e2b0f3483a515393ac4
1 // Testcase for instantiation with cv-qualified type
2 // Build don't link:
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>;