Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. struct Foo;
  2.  
  3. impl Foo {
  4. fn mutate(&mut self) {}
  5. }
  6.  
  7. fn main() {
  8. let f = Foo;
  9. // f.mutate(); // compiler error - cannot borrow f as mutable
  10.  
  11. Foo.mutate();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement