//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14, c++17 // // class year_month_day_last; // constexpr year_month_day_last // operator-(const year_month_day_last& ymdl, const months& dm) noexcept; // // Returns: ymdl + (-dm). // // constexpr year_month_day_last // operator-(const year_month_day_last& ymdl, const years& dy) noexcept; // // Returns: ymdl + (-dy). #include #include #include #include #include "test_macros.h" using year = std::chrono::year; using month = std::chrono::month; using month_day_last = std::chrono::month_day_last; using year_month_day_last = std::chrono::year_month_day_last; using months = std::chrono::months; using years = std::chrono::years; constexpr bool test() { constexpr month December = std::chrono::December; { // year_month_day_last - years year_month_day_last ymdl{year{1234}, month_day_last{December}}; for (int i = 0; i <= 10; ++i) { year_month_day_last ymdl1 = ymdl - years{i}; assert(static_cast(ymdl1.year()) == 1234 - i); assert(ymdl1.month() == December); } } { // year_month_day_last - months year_month_day_last ymdl{year{1234}, month_day_last{December}}; for (unsigned i = 0; i <= 10; ++i) { year_month_day_last ymdl1 = ymdl - months{i}; assert(static_cast(ymdl1.year()) == 1234); assert(static_cast(ymdl1.month()) == 12U - i); } // Test the year wraps around. for (unsigned i = 12; i <= 15; ++i) { year_month_day_last ymdl1 = ymdl - months{i}; assert(static_cast(ymdl1.year()) == 1233); assert(static_cast(ymdl1.month()) == 12U - i + 12); } } return true; } int main(int, char**) { // year_month_day_last - years ASSERT_NOEXCEPT(std::declval() - std::declval()); ASSERT_SAME_TYPE(year_month_day_last, decltype(std::declval() - std::declval())); // year_month_day_last - months ASSERT_NOEXCEPT(std::declval() - std::declval()); ASSERT_SAME_TYPE(year_month_day_last, decltype(std::declval() - std::declval())); test(); static_assert(test()); return 0; }