Files
rust/tests/ui/async-await/in-trait/issue-102219.rs

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

9 lines
132 B
Rust
Raw Normal View History

//@ compile-flags:--crate-type=lib
//@ edition:2021
//@ check-pass
trait T {
2023-09-26 20:20:25 +00:00
#[allow(async_fn_in_trait)]
async fn foo();
}