fork(4) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class A {
  5. public:
  6. A() = default;
  7.  
  8. private:
  9. int i = 5;
  10. };
  11.  
  12. int main() {
  13. // your code goes here
  14. const A a;
  15. return 0;
  16. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty