FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / typedef2.C
blob18802fcd7bcec29a9b1c4596951ed689f741e0ff
1 // Build don't link:
3 typedef const int cint;
5 template<class T>
6 class A
8 public:
9   T f(cint i);
12 template <class T>
13 T A<T>::f(cint i)
17 int main()
19   A<int> a;