fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. // your code goes here
  6. class String{
  7. public:
  8. explicit String(char ch, int n=1){}
  9. String(const char *p){}
  10. private:
  11. void operator=(const char*);
  12. };
  13. int main(){
  14. String x="aaa";
  15. return 0;
  16. }
Success #stdin #stdout 0s 5440KB
stdin
Standard input is empty
stdout
Standard output is empty