| //===----------------------------------------------------------------------===// |
| // The LLVM Compiler Infrastructure |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| // template <class... Args> void emplace(Args&&... args); |
| #include "../../../../Emplaceable.h" |
| #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
| std::priority_queue<Emplaceable> q; |
| assert(q.top() == Emplaceable(1, 2.5)); |
| assert(q.top() == Emplaceable(3, 4.5)); |
| assert(q.top() == Emplaceable(3, 4.5)); |
| #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |