Skip to content

Instantly share code, notes, and snippets.

@carols10cents
Forked from anonymous/playground.rs
Last active February 16, 2017 02:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carols10cents/16f5cdecea8ac662be35f2d0f9d26d18 to your computer and use it in GitHub Desktop.
Save carols10cents/16f5cdecea8ac662be35f2d0f9d26d18 to your computer and use it in GitHub Desktop.
to break your brain again again
fn main() {
let z = 3;
let mut p = &z;
{
let x = 5;
p = &x;
p = &z;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment