blob: e32fe0b8081152ea569572ce926c6a8fca2dee19 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <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> >();
}