1//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8// UNSUPPORTED: c++03, c++11, c++14, c++17
9
10// <chrono>
11
12// class month_weekday_last;
13
14#include <chrono>
15#include <type_traits>
16#include <cassert>
17
18#include "test_macros.h"
19
20int main(int, char**)
21{
22 using month_weekday_last = std::chrono::month_weekday_last;
23
24 static_assert(std::is_trivially_copyable_v<month_weekday_last>, "");
25 static_assert(std::is_standard_layout_v<month_weekday_last>, "");
26
27 return 0;
28}
29

source code of libcxx/test/std/time/time.cal/time.cal.mwdlast/types.pass.cpp