Home | History | Annotate | Download | only in vector.cons
      1 //===----------------------------------------------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      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<int, test_allocator<int> > l(3, 2, test_allocator<int>(5));
     22         std::vector<int, test_allocator<int> > l2(l, test_allocator<int>(3));
     23         l2 = l;
     24         assert(l2 == l);
     25         assert(l2.get_allocator() == test_allocator<int>(3));
     26     }
     27     {
     28         std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
     29         std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3));
     30         l2 = l;
     31         assert(l2 == l);
     32         assert(l2.get_allocator() == other_allocator<int>(5));
     33     }
     34 }
     35