summaryrefslogtreecommitdiff
path: root/libcxx/test/algorithms/alg.sorting/alg.min.max/min.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/algorithms/alg.sorting/alg.min.max/min.pass.cpp')
-rw-r--r--libcxx/test/algorithms/alg.sorting/alg.min.max/min.pass.cpp46
1 files changed, 0 insertions, 46 deletions
diff --git a/libcxx/test/algorithms/alg.sorting/alg.min.max/min.pass.cpp b/libcxx/test/algorithms/alg.sorting/alg.min.max/min.pass.cpp
deleted file mode 100644
index 573adfa658c3..000000000000
--- a/libcxx/test/algorithms/alg.sorting/alg.min.max/min.pass.cpp
+++ /dev/null
@@ -1,46 +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.
-//
-//===----------------------------------------------------------------------===//
-
-// <algorithm>
-
-// template<LessThanComparable T>
-// const T&
-// min(const T& a, const T& b);
-
-#include <algorithm>
-#include <cassert>
-
-template <class T>
-void
-test(const T& a, const T& b, const T& x)
-{
- assert(&std::min(a, b) == &x);
-}
-
-int main()
-{
- {
- int x = 0;
- int y = 0;
- test(x, y, x);
- test(y, x, y);
- }
- {
- int x = 0;
- int y = 1;
- test(x, y, x);
- test(y, x, x);
- }
- {
- int x = 1;
- int y = 0;
- test(x, y, y);
- test(y, x, y);
- }
-}