fork download
  1. #include<iostream>
  2.  
  3. class test{
  4. int i;
  5. public:
  6. test(){}
  7. //More functions here
  8. };
  9.  
  10.  
  11.  
  12. int main()
  13. {
  14. test test1;
  15. test::test test2;
  16. test::test::test test3;
  17. test::test::test::test test4;
  18. return 0;
  19. }
Success #stdin #stdout 0.02s 2720KB
stdin
Standard input is empty
stdout
Standard output is empty