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

30 lines
540 B
Rust
Raw Normal View History

2021-09-11 12:24:40 -07:00
// edition:2018
2022-09-13 14:44:11 -07:00
// revisions: no_drop_tracking drop_tracking
// [drop_tracking] compile-flags: -Zdrop-tracking=yes
// [no_drop_tracking] compile-flags: -Zdrop-tracking=no
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;
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() {}