consistency.pass.cpp revision 73d2f94f6b92a53a7918c9323ac80a3fa087d49b
1//===----------------------------------------------------------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <chrono>
11
12// steady_clock
13
14// check clock invariants
15
16#include <chrono>
17
18int main()
19{
20    typedef std::chrono::steady_clock C;
21    static_assert((std::is_same<C::rep, C::duration::rep>::value), "");
22    static_assert((std::is_same<C::period, C::duration::period>::value), "");
23    static_assert((std::is_same<C::duration, C::time_point::duration>::value), "");
24    static_assert(C::is_steady, "");
25}
26