OSDN Git Service

* class.c (handle_using_decl): Fix comment. Don't lookup
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / using6.C
index 8e518ac..31aa7cd 100644 (file)
@@ -3,13 +3,11 @@
 // Based on bug report by Klaus-Georg Adams
 // <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
 
-// crash test - XFAIL *-*-*
-
 struct bar {
   typedef bar t;
 };
 
 struct foo : bar {
   using bar::t;
-  t baz(); // gets bogus error - XFAIL *-*-*
+  t baz(); 
 };