Raw File
cm_cxx_make_unique.cxx
#include <memory>
int main()
{
  std::unique_ptr<int> u = std::make_unique<int>(0);
  return *u;
}
back to top