mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 06:47:34 +00:00
11 lines
161 B
Rust
11 lines
161 B
Rust
// compile-flags:--crate-type=lib
|
|
// edition:2021
|
|
// check-pass
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
trait T {
|
|
#[allow(async_fn_in_trait)]
|
|
async fn foo();
|
|
}
|