-
-
Save carols10cents/16f5cdecea8ac662be35f2d0f9d26d18 to your computer and use it in GitHub Desktop.
to break your brain again again
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 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