f5256e16df
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103516 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
752 B
C++
35 lines
752 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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> >();
|
|
}
|