fork(5) download
  1. struct something
  2. {
  3. void memfun() const & {}
  4. // void memfun() && {}
  5. };
  6.  
  7. int main()
  8. {
  9. something().memfun();
  10. }
Success #stdin #stdout 0s 3136KB
stdin
Standard input is empty
stdout
Standard output is empty