Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
0e53a67a7bfc64a3ebca472f4e18a3f1324e0ade
/
.
/
Source
/
Checks
/
cm_cxx_unique_ptr.cxx
blob: a9d4ce5d19824f385c38b67f96e9a34e2cddbb28 [
file
]
#include
<memory>
int
main
()
{
std
::
unique_ptr
<int>
u
(
new
int
(
0
));
return
*
u
;
}