blob: 9833757d63598797ec03d0ba64ce54a44eea9bb6 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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
// <chrono>
// class month_weekday_last;
// constexpr bool ok() const noexcept;
// Returns: m_.ok() && wdl_.ok().
#include <chrono>
#include <type_traits>
#include <cassert>
#include "test_macros.h"
int main(int, char**)
{
using month = std::chrono::month;
using weekday = std::chrono::weekday;
using weekday_last = std::chrono::weekday_last;
using month_weekday_last = std::chrono::month_weekday_last;
constexpr month January = std::chrono::January;
constexpr weekday Tuesday = std::chrono::Tuesday;
constexpr weekday_last lastTuesday = weekday_last{Tuesday};
ASSERT_NOEXCEPT( std::declval<const month_weekday_last>().ok());
ASSERT_SAME_TYPE(bool, decltype(std::declval<const month_weekday_last>().ok()));
static_assert(!month_weekday_last{month{}, lastTuesday}.ok(), ""); // Bad month
static_assert(!month_weekday_last{January, weekday_last{weekday{12}}}.ok(), ""); // Bad month
static_assert( month_weekday_last{January, lastTuesday}.ok(), ""); // Both OK
for (unsigned i = 0; i <= 50; ++i)
{
month_weekday_last mwdl{month{i}, lastTuesday};
assert( mwdl.ok() == month{i}.ok());
}
for (unsigned i = 0; i <= 50; ++i)
{
month_weekday_last mwdl{January, weekday_last{weekday{i}}};
assert( mwdl.ok() == weekday_last{weekday{i}}.ok());
}
return 0;
}