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 --- .../nll/issue-54382-use-span-of-tail-of-block.rs | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tests/ui/nll/issue-54382-use-span-of-tail-of-block.rs (limited to 'tests/ui/nll/issue-54382-use-span-of-tail-of-block.rs') diff --git a/tests/ui/nll/issue-54382-use-span-of-tail-of-block.rs b/tests/ui/nll/issue-54382-use-span-of-tail-of-block.rs new file mode 100644 index 000000000..312e6dce8 --- /dev/null +++ b/tests/ui/nll/issue-54382-use-span-of-tail-of-block.rs @@ -0,0 +1,29 @@ +fn main() { + { + let mut _thing1 = D(Box::new("thing1")); + { + let _thing2 = D("thing2"); + side_effects(); + D("other").next(&_thing1) +//~^ ERROR does not live long enough + } + } + + ; +} + +#[derive(Debug)] +struct D(T); + +impl Drop for D { + fn drop(&mut self) { + println!("dropping {:?})", self); + } +} + +impl D { + fn next(&self, _other: U) -> D { D(_other) } + fn end(&self) { } +} + +fn side_effects() { } -- cgit v1.2.3