fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Beta_ab { int a; };
  5.  
  6. struct Beta {
  7. Beta_ab ab;
  8. Beta_ab && getAB() && { cout << "1"; return move(ab); }
  9. Beta_ab && getAB() { cout << "2"; return move(ab); }
  10. };
  11.  
  12. int main() {
  13. Beta b;
  14. Beta_ab ab1 = b.getAB();
  15.  
  16. Beta_ab ab2 = Beta().getAB();
  17.  
  18. return 0;
  19. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:9:14: error: ‘Beta_ab&& Beta::getAB()’ cannot be overloaded
   Beta_ab && getAB() { cout << "2"; return move(ab); }
              ^~~~~
prog.cpp:8:14: error: with ‘Beta_ab&& Beta::getAB() &&’
   Beta_ab && getAB() && { cout << "1"; return move(ab); }
              ^~~~~
prog.cpp: In function ‘int main()’:
prog.cpp:14:24: error: passing ‘Beta’ as ‘this’ argument discards qualifiers [-fpermissive]
  Beta_ab ab1 = b.getAB();
                        ^
prog.cpp:8:14: note:   in call to ‘Beta_ab&& Beta::getAB() &&’
   Beta_ab && getAB() && { cout << "1"; return move(ab); }
              ^~~~~
stdout
Standard output is empty