fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Yoba {
  5. Yoba operator+(const Yoba r) {
  6. return r;
  7. }
  8. Yoba operator=(Yoba r) {
  9. }
  10.  
  11. };
  12.  
  13. int main() {
  14. Yoba a;
  15. Yoba b;
  16. Yoba c;
  17. (a + b) = c;
  18. // your code goes here
  19. return 0;
  20. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Standard output is empty