fork download
  1. #include <new>
  2.  
  3. int main(int argc, char** argv)
  4. {
  5. int buf[2];
  6. int *test = new (buf) int;
  7. return 0;
  8. }
Success #stdin #stdout 0.01s 2720KB
stdin
Standard input is empty
stdout
Standard output is empty