forked from mirror/libcxx
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.
38 lines
783 B
C++
38 lines
783 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <chrono>
|
|
|
|
// duration
|
|
|
|
// template <class Rep2, class Period2>
|
|
// duration(const duration<Rep2, Period2>& d);
|
|
|
|
// overflow should SFINAE instead of error out, LWG 2094
|
|
|
|
#include <chrono>
|
|
#include <cassert>
|
|
|
|
bool called = false;
|
|
|
|
void f(std::chrono::milliseconds);
|
|
void f(std::chrono::seconds)
|
|
{
|
|
called = true;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
{
|
|
std::chrono::duration<int, std::exa> r(1);
|
|
f(r);
|
|
assert(called);
|
|
}
|
|
}
|