Skip to content

Instantly share code, notes, and snippets.

@dbbbit
Last active December 14, 2015 03:51
Show Gist options
  • Save dbbbit/0cbcef1bfaf1a14d9c95 to your computer and use it in GitHub Desktop.
Save dbbbit/0cbcef1bfaf1a14d9c95 to your computer and use it in GitHub Desktop.
fn main() {
let mut a = String::from("hello");
{
let b = &mut a;
&&&&&&&&&&&&&&&&&&&&&&&b.push('b');
}
a.push('a');
println!("{}", a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment