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.

24 lines
325 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-06-24 10:02:54 +00:00
let no = No {};
//~^ ERROR `No` held across
wheeee(&no).await;
drop(no);
2021-09-18 20:00:36 +00:00
}
fn main() {
}