From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/moves/pin-mut-reborrow.fixed | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/ui/moves/pin-mut-reborrow.fixed (limited to 'tests/ui/moves/pin-mut-reborrow.fixed') diff --git a/tests/ui/moves/pin-mut-reborrow.fixed b/tests/ui/moves/pin-mut-reborrow.fixed new file mode 100644 index 000000000..e808186d7 --- /dev/null +++ b/tests/ui/moves/pin-mut-reborrow.fixed @@ -0,0 +1,15 @@ +// run-rustfix +use std::pin::Pin; + +struct Foo; + +impl Foo { + fn foo(self: Pin<&mut Self>) {} +} + +fn main() { + let mut foo = Foo; + let mut foo = Pin::new(&mut foo); + foo.as_mut().foo(); + foo.foo(); //~ ERROR use of moved value +} -- cgit v1.2.3