fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #include <vector>
  5. #include <memory>
  6.  
  7. int main() {
  8. std::allocator<double> da;
  9. std::vector<int> v( da);
  10. return 0;
  11. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty