fork download
  1.  
  2. struct Vector { };
  3.  
  4. int operator *(Vector& v) { return 0; }
  5.  
  6. int main() {
  7. Vector v;
  8. *v;
  9. }
Success #stdin #stdout 0s 2720KB
stdin
Standard input is empty
stdout
Standard output is empty