fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Foo {
  5. int member;
  6. Foo() {};
  7. };
  8.  
  9. int main() {
  10. const Foo foo;
  11.  
  12. cout << foo.member << endl;
  13. }
Success #stdin #stdout 0s 4528KB
stdin
Standard input is empty
stdout
0