fork download
  1. #include <iostream>
  2. using namespace std;
  3. #include <memory>
  4.  
  5. struct Base
  6. {
  7.  
  8. };
  9.  
  10.  
  11. int main() {
  12.  
  13. std::unique_ptr<Base> p=nullptr;
  14. // your code goes here
  15. return 0;
  16. }
Success #stdin #stdout 0s 15224KB
stdin
Standard input is empty
stdout
Standard output is empty