mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
7 lines
99 B
C++
7 lines
99 B
C++
#include <memory>
|
|
int main()
|
|
{
|
|
std::unique_ptr<int> u = std::make_unique<int>(0);
|
|
return *u;
|
|
}
|