re PR c++/24163 (dependent Base class scope examined during unqualified name lookup...
[gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp47.C
index 7ed5a24927804b73a15450b9e2f88dfee4689be8..242a299c164e43728cff290444216c9ef140dafe 100644 (file)
@@ -18,7 +18,7 @@ struct T : public S<X>
 {
   template <class U>
   void f(U u)
-  { printf ("In T::f(U)\n"); g(u); }
+  { printf ("In T::f(U)\n"); this->g(u); }
 };
 
 int main()