diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-03-26 01:17:18 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-03-26 01:17:18 +0000 |
commit | f9223aad2666a9166152a2c666df581376e6906a (patch) | |
tree | 7c8ee07d5d1ec5bea87eb2df17dfb8dec29aa8b8 | |
parent | 2db075b1d3b16f0100fe06408dfb4ab7d50700a4 (diff) |
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
-rw-r--r-- | test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/p2.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
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 24f75c9bfe..1f78a738f3 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 @@ 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; }; } |