Skip to content

Instantly share code, notes, and snippets.

@carols10cents
Forked from anonymous/playground.rs
Last active February 16, 2017 02:52
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/1b71d6941fd1f7be689b70468ebcc00f to your computer and use it in GitHub Desktop.
Save carols10cents/1b71d6941fd1f7be689b70468ebcc00f to your computer and use it in GitHub Desktop.
to break your brain with
fn main() {
let z = 3;
let r;
{
let x = 5;
let mut p = &x;
p = &z;
r = p;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment