op_divide_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#include <chrono>
19#include <cassert>
20
21int main()
22{
23    std::chrono::nanoseconds ns(15);
24    ns = ns / 5;
25    assert(ns.count() == 3);
26}
27