Guest User

Untitled

a guest
Jul 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. a = b = c;
  2.  
  3. *(a = b) = c;
  4.  
  5. Foo &operator=(const Foo &f);
  6.  
  7. Foo *operator=(const Foo &f); // this is weird because type of lhs != type of rhs
  8.  
  9. Foo *operator=(const Foo *f);
Add Comment
Please, Sign In to add comment