aboutsummaryrefslogtreecommitdiff
path: root/libcxx/test/std/input.output/syncstream/syncbuf/syncstream.syncbuf.special/swap.pass.cpp
blob: d1ec4711f3f499a187e97bef1d5d11f5326de3d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

// UNSUPPORTED: c++03, c++11, c++14, c++17
// UNSUPPORTED: no-localization
// UNSUPPORTED: libcpp-has-no-experimental-syncstream

// <syncstream>

//  template<class charT, class traits, class Allocator>
//    void swap(basic_syncbuf<charT, traits, Allocator>&,
//              basic_syncbuf<charT, traits, Allocator>&);

#include <syncstream>
#include <cassert>

#include "test_macros.h"

template <class CharT>
void test() {
  std::basic_syncbuf<CharT> base1;
  std::basic_syncbuf<CharT> base2;
  std::basic_syncbuf<CharT> buff1(&base1);
  std::basic_syncbuf<CharT> buff2(&base2);
  std::swap(buff1, buff2);

  assert(buff1.get_wrapped() == &base2);
  assert(buff2.get_wrapped() == &base1);
}

int main(int, char**) {
  test<char>();
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
  test<wchar_t>();
#endif

  return 0;
}