blob: 2d18f4acf0bd0e890988429b829ea21baa50daa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//===----------------------------------------------------------------------===//
//
// ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <chrono>
// duration_values::max
#include <chrono>
#include <limits>
#include <cassert>
#include "../../rep.h"
int main()
{
assert(std::chrono::duration_values<int>::max() ==
std::numeric_limits<int>::max());
assert(std::chrono::duration_values<double>::max() ==
std::numeric_limits<double>::max());
assert(std::chrono::duration_values<Rep>::max() ==
std::numeric_limits<Rep>::max());
}
|