Forgot to svn add the test for r189722.

llvm-svn: 189723
This commit is contained in:
Howard Hinnant 2013-08-31 17:03:02 +00:00
parent 69bc206547
commit dda6f242fb
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
//===----------------------------------------------------------------------===//
//
// 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);
}
}