You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
673 B
C++
27 lines
673 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <chrono>
|
|
|
|
// duration
|
|
|
|
// template <class Rep2, class Period2>
|
|
// duration(const duration<Rep2, Period2>& d);
|
|
|
|
// inexact conversions disallowed for integral reps
|
|
|
|
#include <chrono>
|
|
|
|
int main(int, char**)
|
|
{
|
|
std::chrono::microseconds us(1);
|
|
std::chrono::milliseconds ms = us;
|
|
|
|
return 0;
|
|
}
|