diff --git a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp index e4fad7cd36c941..578efb90f7f1ab 100644 --- a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp +++ b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp @@ -14,12 +14,6 @@ #include #include "test_macros.h" -#if TEST_STD_VER >= 11 && defined(_LIBCPP_VERSION) -#define LIBCPP11_STATIC_ASSERT(...) static_assert(__VA_ARGS__) -#else -#define LIBCPP11_STATIC_ASSERT(...) ((void)0) -#endif - struct A { explicit A(int);