| //===----------------------------------------------------------------------===// |
| // 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& operator*=(const rep& rhs); |
| constexpr bool test_constexpr() |
| std::chrono::seconds s(3); |
| std::chrono::nanoseconds ns(3); |
| assert(ns.count() == 15); |
| static_assert(test_constexpr(), ""); |