//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template // priority_queue(InputIterator first, InputIterator last, const Compare& comp); #include #include #include int main() { int a[] = {3, 5, 2, 0, 6, 8, 1}; int* an = a + sizeof(a)/sizeof(a[0]); std::priority_queue, std::greater > q(a, an, std::greater()); assert(q.size() == an - a); assert(q.top() == 0); }