mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 11:44:28 +00:00
12 lines
212 B
Rust
12 lines
212 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.as_mut().get_mut());
|
||
|
foo(r.get_mut()); //~ ERROR use of moved value
|
||
|
}
|