fork download
  1. class Bar {
  2. public:
  3. static Bar create_bar() {
  4. return Bar();
  5. }
  6.  
  7. private:
  8. Bar() {}
  9. };
  10.  
  11. int main() {
  12. Bar::create_bar();
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 3136KB
stdin
Standard input is empty
stdout
Standard output is empty