fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Verylong
  5. {
  6. public:
  7. Verylong (int x) { }
  8. Verylong (long x = 0) { }
  9. Verylong (const Verylong& vrl) { }
  10. explicit Verylong (const std::string& str) { }
  11. explicit Verylong (const char* ch) { }
  12. };
  13.  
  14. int main()
  15. {
  16. Verylong vl(0);
  17. return 0;
  18. }
Success #stdin #stdout 0s 3464KB
stdin
Standard input is empty
stdout
Standard output is empty