blob: c31a9f8dcc737a7a6b172c6a8f438c713854ddf9 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <algorithm>
// template<class T, class Compare>
// T
// max(initializer_list<T> t, Compare comp);
#include <algorithm>
#include <functional>
#include <cassert>
int main()
{
#ifdef _LIBCPP_MOVE
int i = std::max({2, 3, 1}, std::greater<int>());
assert(i == 1);
i = std::max({2, 1, 3}, std::greater<int>());
assert(i == 1);
i = std::max({3, 1, 2}, std::greater<int>());
assert(i == 1);
i = std::max({3, 2, 1}, std::greater<int>());
assert(i == 1);
i = std::max({1, 2, 3}, std::greater<int>());
assert(i == 1);
i = std::max({1, 3, 2}, std::greater<int>());
assert(i == 1);
#endif // _LIBCPP_MOVE
}