mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-13 00:56:08 +08:00
7 lines
84 B
C++
7 lines
84 B
C++
#include <memory>
|
|
int main()
|
|
{
|
|
std::unique_ptr<int> u(new int(0));
|
|
return *u;
|
|
}
|