//===----------------------------------------------------------------------===// // // ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚ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 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); } int main() { test >(); test >(); }