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