//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // type_traits // enable_if #include #include "test_macros.h" int main(int, char**) { ASSERT_SAME_TYPE(void, std::enable_if::type); ASSERT_SAME_TYPE(int, std::enable_if::type); #if TEST_STD_VER > 11 ASSERT_SAME_TYPE(void, std::enable_if_t); ASSERT_SAME_TYPE(int, std::enable_if_t); #endif return 0; }