diff options
Diffstat (limited to 'libcxx/test/utilities/time/time.point/time.point.special/max.pass.cpp')
| -rw-r--r-- | libcxx/test/utilities/time/time.point/time.point.special/max.pass.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/libcxx/test/utilities/time/time.point/time.point.special/max.pass.cpp b/libcxx/test/utilities/time/time.point/time.point.special/max.pass.cpp deleted file mode 100644 index 6bba6fc8278..00000000000 --- a/libcxx/test/utilities/time/time.point/time.point.special/max.pass.cpp +++ /dev/null @@ -1,25 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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> - -// time_point - -// static constexpr time_point max(); - -#include <chrono> -#include <cassert> - -int main() -{ - typedef std::chrono::system_clock Clock; - typedef std::chrono::milliseconds Duration; - typedef std::chrono::time_point<Clock, Duration> TP; - assert(TP::max() == TP(Duration::max())); -} |

