Created
April 10, 2025 03:48
-
-
Save kt3k/0918d927784eb0219bc44314cc1ca80e to your computer and use it in GitHub Desktop.
This file contains 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 mut v = Vec::<i32>::new(); | |
let mut push = &mut v; | |
let mut push_wrap = &mut push; | |
let _ = &mut push; | |
let _ = &mut push_wrap; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment