fork download
  1. #include <iostream>
  2.  
  3. struct A {
  4.  
  5. static void foo() { std::cout << "hello, world!"; }
  6. };
  7.  
  8.  
  9. int main() {
  10. A* a;
  11. a->foo();
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 4320KB
stdin
Standard input is empty
stdout
hello, world!