| //===----------------------------------------------------------------------===// |
| // 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 |
| //===----------------------------------------------------------------------===// |
| // template<class T, class... Args> shared_ptr<T> make_shared(Args&&... args); |
| std::shared_ptr<T> p0 = std::make_shared<T>(t0); |
| std::shared_ptr<T> p1 = std::make_shared<T>(t1); |
| std::shared_ptr<const T> p0 = std::make_shared<const T>(t0); |
| std::shared_ptr<const T> p1 = std::make_shared<const T>(t1); |
| std::shared_ptr<volatile T> p0 = std::make_shared<volatile T>(t0); |
| std::shared_ptr<volatile T> p1 = std::make_shared<volatile T>(t1); |
| const volatile T t1 = t0; |
| std::shared_ptr<const volatile T> p0 = std::make_shared<const volatile T>(t0); |
| std::shared_ptr<const volatile T> p1 = std::make_shared<const volatile T>(t1); |