]> granicus.if.org Git - clang/commitdiff
Remove FIXMEs: these are covered by a core issue which we don't yet implement
authorRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 26 Mar 2013 01:17:18 +0000 (01:17 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 26 Mar 2013 01:17:18 +0000 (01:17 +0000)
(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

test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp

index 24f75c9bfe73fdd5486a7b19e4aaf74bfc95c38c..1f78a738f38bf2853a5551ab0875db0417921766 100644 (file)
@@ -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<typename T>
     struct ZT : T::T {
-      // FIXME: Core wording says this is invalid, but we and g++ accept.
       using T::T::T;
     };
   }