//===----------------------------------------------------------------------===// // // 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 // XFAIL: * // // class weekday_indexed; // template // basic_ostream& // operator<<(basic_ostream& os, const weekday_indexed& wdi); // // Effects: os << wdi.weekday() << '[' << wdi.index(). // If wdi.index() is in the range [1, 5], appends with ']', // otherwise appends with " is not a valid index]". #include #include #include #include "test_macros.h" int main(int, char**) { using weekday_indexed = std::chrono::weekday_indexed; using weekday = std::chrono::weekday; std::cout << weekday_indexed{weekday{3}}; return 0; }