Skip to content

Instantly share code, notes, and snippets.

@kt3k
Created April 10, 2025 03:48
Show Gist options
  • Save kt3k/0918d927784eb0219bc44314cc1ca80e to your computer and use it in GitHub Desktop.
Save kt3k/0918d927784eb0219bc44314cc1ca80e to your computer and use it in GitHub Desktop.
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