2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / p10951.C
blob352b1a9584291b8cffe674a0a6dc989d218e0141
1 // { dg-do assemble  }
2 // prms-id: 10951
4 inline int m1(const int& a) {
5   return 1;
8 template <class T>
9 class A {
10 public:
11   typedef int st;
13   static int m2t() {
14     return m1(1);
15   }
18 A<int>::st i;
19 int m3() {
20   return A<int>::m2t();