mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
12 lines
204 B
Rust
12 lines
204 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
|
|
}
|