//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // duration // static constexpr duration min(); #include #include #include #include "../../rep.h" template void test() { { typedef typename D::rep Rep; Rep min_rep = std::chrono::duration_values::min(); assert(D::min().count() == min_rep); } #ifndef _LIBCPP_HAS_NO_CONSTEXPR { typedef typename D::rep Rep; constexpr Rep min_rep = std::chrono::duration_values::min(); static_assert(D::min().count() == min_rep, ""); } #endif } int main() { test >(); test >(); }