fork download
  1. #include <iostream>
  2.  
  3. struct X
  4. {
  5. void func() { std::cout << "calling func\n"; }
  6. };
  7.  
  8. int main()
  9. {
  10. X * xp = nullptr;
  11. xp->func();
  12. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
calling func