mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-27 13:57:20 +00:00
8 lines
130 B
Rust
8 lines
130 B
Rust
//@ known-bug: #136286
|
|
//@ compile-flags: --edition=2024
|
|
|
|
#![feature(async_fn_in_dyn_trait)]
|
|
trait A {
|
|
async fn b(self: A);
|
|
}
|