//===----------------------------------------------------------------------===// // // 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 // template // duration(const duration& d); // overflow should SFINAE instead of error out, LWG 2094 #include #include bool called = false; void f(std::chrono::milliseconds); void f(std::chrono::seconds) { called = true; } int main() { { std::chrono::duration r(1); f(r); assert(called); } }