aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2013-03-26 01:17:18 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2013-03-26 01:17:18 +0000
commitf9223aad2666a9166152a2c666df581376e6906a (patch)
tree7c8ee07d5d1ec5bea87eb2df17dfb8dec29aa8b8
parent2db075b1d3b16f0100fe06408dfb4ab7d50700a4 (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.cpp2
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;
};
}