#include <iostream>
#include <memory>

int main(int argc, char *argv[])
{
	auto sp = std::make_shared<int>();
	auto p = sp.get();
	delete p;
}