1 //===----------------------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
11 // template <class T, class Container>
12 // void swap(queue<T, Container>& x, queue<T, Container>& y);
17 #include "test_macros.h"
24 for (int i
= 0; i
< n
; ++i
)
31 std::queue
<int> q1
= make
<std::queue
<int> >(5);
32 std::queue
<int> q2
= make
<std::queue
<int> >(10);
33 std::queue
<int> q1_save
= q1
;
34 std::queue
<int> q2_save
= q2
;
36 assert(q1
== q2_save
);
37 assert(q2
== q1_save
);