blob: cc54dcc12616e54e0ca1a5462333ea03c5f85f38 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <queue>
11
12// template <class Alloc>
13// explicit priority_queue(const Alloc& a);
14
15#include <queue>
16#include <cassert>
17
18#include "../../../../test_allocator.h"
19
20template <class T>
21struct test
22 : public std::priority_queue<T, std::vector<T, test_allocator<T> > >
23{
24 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base;
25 typedef typename base::container_type container_type;
26 typedef typename base::value_compare value_compare;
27
28 explicit test(const test_allocator<int>& a) : base(a) {}
29 test(const value_compare& comp, const test_allocator<int>& a)
30 : base(comp, c, a) {}
31 test(const value_compare& comp, const container_type& c,
32 const test_allocator<int>& a) : base(comp, c, a) {}
Howard Hinnant73d21a42010-09-04 23:28:19 +000033#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000034 test(const value_compare& comp, container_type&& c,
35 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
36 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
Howard Hinnant73d21a42010-09-04 23:28:19 +000037#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000038 test_allocator<int> get_allocator() {return c.get_allocator();}
39
40 using base::c;
41};
42
43int main()
44{
45 test<int> q((test_allocator<int>(3)));
46 assert(q.c.get_allocator() == test_allocator<int>(3));
47 assert(q.c.size() == 0);
48}