Remove FIXMEs: these are covered by a core issue which we don't yet implement
(but we happen to get this part right).


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177958 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp b/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp
index 24f75c9..1f78a73 100644
--- a/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp
+++ b/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp
@@ -88,12 +88,10 @@
       };
     };
     struct Z : A {
-      // FIXME: Core wording says this is invalid, but we and g++ accept.
       using A::A::A;
     };
     template<typename T>
     struct ZT : T::T {
-      // FIXME: Core wording says this is invalid, but we and g++ accept.
       using T::T::T;
     };
   }