op_times_rep.pass.cpp revision b64f8b07c104c6cc986570ac8ee0ed16a9f23976
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// duration
13
14// template <class Rep1, class Period, class Rep2>
15//   duration<typename common_type<Rep1, Rep2>::type, Period>
16//   operator*(const duration<Rep1, Period>& d, const Rep2& s);
17
18// template <class Rep1, class Period, class Rep2>
19//   duration<typename common_type<Rep1, Rep2>::type, Period>
20//   operator*(const Rep1& s, const duration<Rep2, Period>& d);
21
22#include <chrono>
23#include <cassert>
24
25int main()
26{
27    std::chrono::nanoseconds ns(3);
28    ns = ns * 5;
29    assert(ns.count() == 15);
30    ns = 6 * ns;
31    assert(ns.count() == 90);
32}
33