-
-
Save carols10cents/1b71d6941fd1f7be689b70468ebcc00f to your computer and use it in GitHub Desktop.
to break your brain with
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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