Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / typedef2.C
blob89fabaf54989d594f5014189818a8f7a14548a34
1 // { dg-do assemble  }
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;