diff --git a/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp b/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp index 24f75c9bfe73..1f78a738f38b 100644 --- a/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp +++ b/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp @@ -88,12 +88,10 @@ namespace InhCtor { }; }; struct Z : A { - // FIXME: Core wording says this is invalid, but we and g++ accept. using A::A::A; }; template struct ZT : T::T { - // FIXME: Core wording says this is invalid, but we and g++ accept. using T::T::T; }; }