blob: 1c4a4f7c9282e8de6ba4d701ff7c398d38cd3fed [file] [log] [blame]
Howard Hinnantd1d27a42011-06-03 19:40:40 +00001//===----------------------------------------------------------------------===//
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=(vector&& c)
13// noexcept(
14// allocator_type::propagate_on_container_move_assignment::value &&
15// is_nothrow_move_assignable<allocator_type>::value);
16
17// This tests a conforming extension
18
19#include <vector>
20#include <cassert>
21
Marshall Clowdf00d5e2015-01-28 21:22:53 +000022#include "MoveOnly.h"
Marshall Clow1b921882013-12-03 00:18:10 +000023#include "test_allocator.h"
Howard Hinnantd1d27a42011-06-03 19:40:40 +000024
25template <class T>
26struct some_alloc
27{
28 typedef T value_type;
29 some_alloc(const some_alloc&);
30};
31
32int main()
33{
34#if __has_feature(cxx_noexcept)
35 {
36 typedef std::vector<MoveOnly> C;
37 static_assert(std::is_nothrow_move_assignable<C>::value, "");
38 }
39 {
40 typedef std::vector<MoveOnly, test_allocator<MoveOnly>> C;
41 static_assert(!std::is_nothrow_move_assignable<C>::value, "");
42 }
43 {
44 typedef std::vector<MoveOnly, other_allocator<MoveOnly>> C;
45 static_assert(std::is_nothrow_move_assignable<C>::value, "");
46 }
47 {
48 typedef std::vector<MoveOnly, some_alloc<MoveOnly>> C;
49 static_assert(!std::is_nothrow_move_assignable<C>::value, "");
50 }
51#endif
Howard Hinnantd1d27a42011-06-03 19:40:40 +000052}