| //===----------------------------------------------------------------------===// |
| // 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 |
| //===----------------------------------------------------------------------===// |
| // shared_ptr(const shared_ptr& r); |
| std::shared_ptr<A> pA(new A); |
| assert(pA.use_count() == 1); |
| std::shared_ptr<A> pA2(pA); |
| assert(pA.use_count() == 2); |
| assert(pA2.use_count() == 2); |
| assert(pA2.get() == pA.get()); |
| assert(pA.use_count() == 1); |
| assert(pA.use_count() == 0); |
| std::shared_ptr<A> pA2(pA); |
| assert(pA.use_count() == 0); |
| assert(pA2.use_count() == 0); |
| assert(pA2.get() == pA.get()); |
| assert(pA.use_count() == 0); |