rust/tests/ui/lint/must_not_suspend/dedup.rs

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

21 lines
288 B
Rust
Raw Normal View History

2021-09-18 20:00:36 +00:00
// edition:2018
#![feature(must_not_suspend)]
#![deny(must_not_suspend)]
#[must_not_suspend]
struct No {}
async fn shushspend() {}
async fn wheeee<T>(t: T) {
shushspend().await;
drop(t);
}
async fn yes() {
2023-05-07 18:38:52 +00:00
wheeee(&No {}).await; //~ ERROR `No` held across
2021-09-18 20:00:36 +00:00
}
fn main() {
}