1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 // <queue>
10 
11 // queue& operator=(queue&& c)
12 //     noexcept(is_nothrow_move_assignable<container_type>::value);
13 
14 // This tests a conforming extension
15 
16 // UNSUPPORTED: c++03
17 
18 #include <queue>
19 #include <cassert>
20 
21 #include "test_macros.h"
22 #include "MoveOnly.h"
23 
main(int,char **)24 int main(int, char**)
25 {
26     {
27         typedef std::queue<MoveOnly> C;
28         static_assert(std::is_nothrow_move_assignable<C>::value, "");
29     }
30 
31   return 0;
32 }
33