//===----------------------------------------------------------------------===// // // 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 // UNSUPPORTED: no-filesystem, no-localization, no-tzdb // XFAIL: libcpp-has-no-experimental-tzdb // XFAIL: availability-tzdb-missing // // template // class zoned_time; // // explicit zoned_time(string_view name); #include #include #include #include #include "../test_offset_time_zone.h" // Verify the results of the constructed object. int main(int, char**) { { using ptr = const std::chrono::time_zone*; static_assert(std::constructible_from, std::string_view>); static_assert(!std::convertible_to>); std::chrono::zoned_time zt{"UTC"}; assert(zt.get_time_zone() == std::chrono::locate_zone("UTC")); assert(zt.get_sys_time() == std::chrono::sys_seconds{}); } { using ptr = offset_time_zone; static_assert(!std::constructible_from, std::string_view>); static_assert(!std::convertible_to>); } { using ptr = offset_time_zone; static_assert(!std::constructible_from, std::string_view>); static_assert(!std::convertible_to>); } { using ptr = offset_time_zone; static_assert(std::constructible_from, std::string_view>); static_assert(!std::convertible_to>); ptr tz; std::chrono::zoned_time zt{"42"}; assert(zt.get_time_zone().offset() == std::chrono::seconds{42}); assert(zt.get_sys_time() == std::chrono::sys_seconds{}); } { using ptr = offset_time_zone; static_assert(std::constructible_from, std::string_view>); static_assert(!std::convertible_to>); ptr tz; std::chrono::zoned_time zt{"42"}; assert(zt.get_time_zone().offset() == std::chrono::seconds{42}); assert(zt.get_sys_time() == std::chrono::sys_seconds{}); } return 0; }