blob: 7f304054bda0a986b2cc42f0cb931f24b9d71f47 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <memory>
// shared_ptr
// template<class T, class... Args> shared_ptr<T> make_shared(Args&&... args);
#include <memory>
#include <cassert>
#include "test_macros.h"
struct S {
private:
S () {}; // ctor is private
};
int main()
{
std::shared_ptr<S> p = std::make_shared<S>();
}