//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // requires MoveAssignable && MoveConstructible // void // swap(T& a, T& b); #include #include #ifdef _LIBCPP_MOVE #include #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 i(new int(1)); std::unique_ptr j(new int(2)); std::swap(i, j); assert(*i == 2); assert(*j == 1); } #endif // _LIBCPP_MOVE int main() { test(); #ifdef _LIBCPP_MOVE test1(); #endif }