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 // priority_queue& operator=(priority_queue&& c)
12 //     noexcept(is_nothrow_move_assignable<container_type>::value &&
13 //              is_nothrow_move_assignable<Compare>::value);
14 
15 // This tests a conforming extension
16 
17 // UNSUPPORTED: c++03
18 
19 #include <queue>
20 #include <cassert>
21 
22 #include "test_macros.h"
23 #include "MoveOnly.h"
24 
main(int,char **)25 int main(int, char**)
26 {
27     {
28         typedef std::priority_queue<MoveOnly> C;
29         static_assert(std::is_nothrow_move_assignable<C>::value, "");
30     }
31 
32   return 0;
33 }
34