//===----------------------------------------------------------------------===// // // ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚ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 zero(); #include #include #include "../../rep.h" template void test() { typedef typename D::rep Rep; Rep zero_rep = std::chrono::duration_values::zero(); assert(D::zero().count() == zero_rep); } int main() { test >(); test >(); }