fork download
  1. #include <iostream>
  2. #include <memory>
  3.  
  4. int main() {
  5. auto a = std::allocate_shared<std::allocator<int>>(std::allocator<int>{});
  6.  
  7. return 0;
  8. }
Success #stdin #stdout 0s 3224KB
stdin
Standard input is empty
stdout
Standard output is empty