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