Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
583 B
Rust
Raw Normal View History

2021-09-11 12:24:40 -07:00
// edition:2018
// revisions: no_drop_tracking drop_tracking drop_tracking_mir
// [drop_tracking] compile-flags: -Zdrop-tracking
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
2021-09-11 12:24:40 -07:00
#![feature(must_not_suspend)]
#![deny(must_not_suspend)]
#[must_not_suspend = "You gotta use Umm's, ya know?"]
struct Umm {
2022-09-13 14:44:11 -07:00
i: i64,
2021-09-11 12:24:40 -07:00
}
struct Bar {
u: Umm,
}
async fn other() {}
impl Bar {
async fn uhoh(&mut self) {
let guard = &mut self.u; //~ ERROR `Umm` held across
other().await;
2023-01-26 03:51:26 +00:00
let _g = &*guard;
2022-09-13 14:44:11 -07:00
*guard = Umm { i: 2 }
2021-09-11 12:24:40 -07:00
}
}
2022-09-13 14:44:11 -07:00
fn main() {}