mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
12 lines
203 B
Rust
12 lines
203 B
Rust
|
// run-rustfix
|
||
|
use std::pin::Pin;
|
||
|
|
||
|
fn foo(_: &mut ()) {}
|
||
|
|
||
|
fn main() {
|
||
|
let mut uwu = ();
|
||
|
let mut r = Pin::new(&mut uwu);
|
||
|
foo(r.get_mut());
|
||
|
foo(r.get_mut()); //~ ERROR use of moved value
|
||
|
}
|