From 070a5d675020b665bc7ee5f1b6dacd4092c7ab69 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Sat, 20 Jul 2013 19:22:08 +0000 Subject: [PATCH] Undisable a test for a c++98-compat warning for inheriting constructors now that we implement them. llvm-svn: 186768 --- clang/test/SemaCXX/cxx98-compat.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/clang/test/SemaCXX/cxx98-compat.cpp b/clang/test/SemaCXX/cxx98-compat.cpp index 51a59fd..7ab92f0 100644 --- a/clang/test/SemaCXX/cxx98-compat.cpp +++ b/clang/test/SemaCXX/cxx98-compat.cpp @@ -147,16 +147,12 @@ bool no_except_expr = noexcept(1 + 1); // expected-warning {{noexcept expression void *null = nullptr; // expected-warning {{'nullptr' is incompatible with C++98}} static_assert(true, "!"); // expected-warning {{static_assert declarations are incompatible with C++98}} -// FIXME: Reintroduce this test if support for inheriting constructors is -// implemented. -#if 0 struct InhCtorBase { InhCtorBase(int); }; struct InhCtorDerived : InhCtorBase { - using InhCtorBase::InhCtorBase; // xpected-warning {{inheriting constructors are incompatible with C++98}} + using InhCtorBase::InhCtorBase; // expected-warning {{inheriting constructors are incompatible with C++98}} }; -#endif struct FriendMember { static void MemberFn(); -- 2.7.4