// -*- C++ -*- //===----------------------------------------------------------------------===// // // 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 // REQUIRES: c++experimental // // observer_ptr // // constexpr void swap(observer_ptr& other) noexcept; // // template // void swap(observer_ptr& lhs, observer_ptr& rhs) noexcept; #include #include #include template constexpr void test_swap() { using Ptr = std::experimental::observer_ptr; Object obj1, obj2; { Ptr ptr1(&obj1); Ptr ptr2(&obj2); assert(ptr1.get() == &obj1); assert(ptr2.get() == &obj2); ptr1.swap(ptr2); assert(ptr1.get() == &obj2); assert(ptr2.get() == &obj1); static_assert(noexcept(ptr1.swap(ptr2))); static_assert(std::is_same::value); } { Ptr ptr1(&obj1); Ptr ptr2(&obj2); assert(ptr1.get() == &obj1); assert(ptr2.get() == &obj2); std::experimental::swap(ptr1, ptr2); assert(ptr1.get() == &obj2); assert(ptr2.get() == &obj1); static_assert(noexcept(std::experimental::swap(ptr1, ptr2))); static_assert(std::is_same::value); } } struct Bar {}; constexpr bool test() { test_swap(); test_swap(); test_swap(); return true; } int main(int, char**) { test(); static_assert(test()); return 0; }