//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // // duration // static constexpr duration max(); // noexcept after C++17 #include #include #include #include "test_macros.h" #include "../../rep.h" template void test() { LIBCPP_ASSERT_NOEXCEPT(std::chrono::duration_values::max()); #if TEST_STD_VER > 17 ASSERT_NOEXCEPT( std::chrono::duration_values::max()); #endif { typedef typename D::rep DRep; DRep max_rep = std::chrono::duration_values::max(); assert(D::max().count() == max_rep); } #if TEST_STD_VER >= 11 { typedef typename D::rep DRep; constexpr DRep max_rep = std::chrono::duration_values::max(); static_assert(D::max().count() == max_rep, ""); } #endif } int main(int, char**) { test >(); test >(); return 0; }