fork download
  1. #include <iostream>
  2.  
  3. class Foo
  4. {
  5. public:
  6. int x = 10;
  7. };
  8.  
  9. int main() {
  10. Foo bar;
  11. std::cout << bar.x;
  12. return 0;
  13. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
10