blob: 574f9bcce87411c0a52cbc2e388bdb612c4cf767 [file] [log] [blame]
// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
#include <chrono>
#include <cassert>
int main()
{
#if _LIBCPP_STD_VER > 11
using namespace std::chrono;
hours h = 4h;
assert ( h == hours(4));
auto h2 = 4.0h;
assert ( h == h2 );
minutes min = 36min;
assert ( min == minutes(36));
auto min2 = 36.0min;
assert ( min == min2 );
seconds s = 24s;
assert ( s == seconds(24));
auto s2 = 24.0s;
assert ( s == s2 );
milliseconds ms = 247ms;
assert ( ms == milliseconds(247));
auto ms2 = 247.0ms;
assert ( ms == ms2 );
microseconds us = 867us;
assert ( us == microseconds(867));
auto us2 = 867.0us;
assert ( us == us2 );
nanoseconds ns = 645ns;
assert ( ns == nanoseconds(645));
auto ns2 = 645.ns;
assert ( ns == ns2 );
#endif
}