cm_cxx_make_unique.cxx 99 B

123456
  1. #include <memory>
  2. int main()
  3. {
  4. std::unique_ptr<int> u = std::make_unique<int>(0);
  5. return *u;
  6. }