blob: 70ffeb9b66f7738eac86e47a04b0584a6c07b627 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <unordered_set>
// template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
// class Alloc = allocator<Value>>
// class unordered_set
// template <class... Args>
// pair<iterator, bool> emplace(Args&&... args);
#include <unordered_set>
#include <cassert>
#include "../../Emplaceable.h"
int main()
{
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
{
typedef std::unordered_set<Emplaceable> C;
typedef std::pair<C::iterator, bool> R;
C c;
R r = c.emplace();
assert(c.size() == 1);
assert(*r.first == Emplaceable());
assert(r.second);
r = c.emplace(Emplaceable(5, 6));
assert(c.size() == 2);
assert(*r.first == Emplaceable(5, 6));
assert(r.second);
r = c.emplace(5, 6);
assert(c.size() == 2);
assert(*r.first == Emplaceable(5, 6));
assert(!r.second);
}
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
}