//===----------------------------------------------------------------------===// // // ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // duration // static constexpr duration max(); #include #include #include #include "../../rep.h" template void test() { typedef typename D::rep Rep; Rep max_rep = std::chrono::duration_values::max(); assert(D::max().count() == max_rep); } int main() { test >(); test >(); }