//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // duration // template // duration(const duration& d); // inexact conversions allowed for floating point reps #include #include int main() { { std::chrono::duration us(1); std::chrono::duration ms = us; assert(ms.count() == 1./1000); } #ifndef _LIBCPP_HAS_NO_CONSTEXPR { constexpr std::chrono::duration us(1); constexpr std::chrono::duration ms = us; static_assert(ms.count() == 1./1000, ""); } #endif }