//===----------------------------------------------------------------------===// // // 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 // template // typename common_type, duration>::type // operator+(const duration& lhs, const duration& rhs); #include #include #include "test_macros.h" int main(int, char**) { { std::chrono::seconds s1(3); std::chrono::seconds s2(5); std::chrono::seconds r = s1 + s2; assert(r.count() == 8); } { std::chrono::seconds s1(3); std::chrono::microseconds s2(5); std::chrono::microseconds r = s1 + s2; assert(r.count() == 3000005); } { std::chrono::duration > s1(3); std::chrono::duration > s2(5); std::chrono::duration > r = s1 + s2; assert(r.count() == 75); } { std::chrono::duration > s1(3); std::chrono::duration > s2(5); std::chrono::duration > r = s1 + s2; assert(r.count() == 75); } #if TEST_STD_VER >= 11 { constexpr std::chrono::seconds s1(3); constexpr std::chrono::seconds s2(5); constexpr std::chrono::seconds r = s1 + s2; static_assert(r.count() == 8, ""); } { constexpr std::chrono::seconds s1(3); constexpr std::chrono::microseconds s2(5); constexpr std::chrono::microseconds r = s1 + s2; static_assert(r.count() == 3000005, ""); } { constexpr std::chrono::duration > s1(3); constexpr std::chrono::duration > s2(5); constexpr std::chrono::duration > r = s1 + s2; static_assert(r.count() == 75, ""); } { constexpr std::chrono::duration > s1(3); constexpr std::chrono::duration > s2(5); constexpr std::chrono::duration > r = s1 + s2; static_assert(r.count() == 75, ""); } #endif return 0; }