mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-06 12:09:03 +00:00
12 lines
212 B
Plaintext
12 lines
212 B
Plaintext
// run-rustfix
|
|
use std::pin::Pin;
|
|
|
|
fn foo(_: &mut ()) {}
|
|
|
|
fn main() {
|
|
let mut uwu = ();
|
|
let mut r = Pin::new(&mut uwu);
|
|
foo(r.as_mut().get_mut());
|
|
foo(r.get_mut()); //~ ERROR use of moved value
|
|
}
|