blob: a9d4ce5d19824f385c38b67f96e9a34e2cddbb28 [file] [log] [blame]
#include <memory>
int main()
{
std::unique_ptr<int> u(new int(0));
return *u;
}