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