fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Person
  5. {
  6. Person(int) {}
  7. };
  8.  
  9. int main()
  10. {
  11. Person *p = new Person[5]{1,2,3,4,5};
  12. return 0;
  13. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
Standard output is empty