summaryrefslogtreecommitdiffstats
path: root/test/utilities/utility/utility.swap/swap.pass.cpp
blob: e4c0f388ea6c363fa59a45d30a3b2f9ef135ebc7 (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
44
45
46
47
48
49
50
51
52
53
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// <utility>

// template<class T> 
//   requires MoveAssignable<T> && MoveConstructible<T> 
//   void
//   swap(T& a, T& b);

#include <utility>
#include <cassert>
#ifdef _LIBCPP_MOVE
#include <memory>
#endif

void
test()
{
    int i = 1;
    int j = 2;
    std::swap(i, j);
    assert(i == 2);
    assert(j == 1);
}

#ifdef _LIBCPP_MOVE

void
test1()
{
    std::unique_ptr<int> i(new int(1));
    std::unique_ptr<int> j(new int(2));
    std::swap(i, j);
    assert(*i == 2);
    assert(*j == 1);
}

#endif

int main()
{
    test();
#ifdef _LIBCPP_MOVE
    test1();
#endif
}