You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
790 B
C++
28 lines
790 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
|
|
// conditional
|
|
|
|
#include <type_traits>
|
|
|
|
#include "test_macros.h"
|
|
|
|
int main(int, char**)
|
|
{
|
|
ASSERT_SAME_TYPE(char, std::conditional<true, char, int>::type);
|
|
ASSERT_SAME_TYPE(int, std::conditional<false, char, int>::type);
|
|
#if TEST_STD_VER > 11
|
|
ASSERT_SAME_TYPE(char, std::conditional_t<true, char, int>);
|
|
ASSERT_SAME_TYPE(int, std::conditional_t<false, char, int>);
|
|
#endif
|
|
|
|
return 0;
|
|
}
|