Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
| 2 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | // <vector> |
| 11 | |
| 12 | // vector& operator=(const vector& c); |
| 13 | |
| 14 | #include <vector> |
| 15 | #include <cassert> |
| 16 | #include "../../test_allocator.h" |
| 17 | |
| 18 | int main() |
| 19 | { |
| 20 | { |
| 21 | std::vector<bool, test_allocator<bool> > l(3, 2, test_allocator<bool>(5)); |
| 22 | std::vector<bool, test_allocator<bool> > l2(l, test_allocator<bool>(3)); |
| 23 | l2 = l; |
| 24 | assert(l2 == l); |
| 25 | assert(l2.get_allocator() == test_allocator<bool>(3)); |
| 26 | } |
| 27 | { |
| 28 | std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5)); |
| 29 | std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3)); |
| 30 | l2 = l; |
| 31 | assert(l2 == l); |
| 32 | assert(l2.get_allocator() == other_allocator<bool>(5)); |
| 33 | } |
| 34 | } |