rust/tests/ui/async-await/async-trait-fn.rs
2023-10-13 21:01:36 +00:00

14 lines
188 B
Rust

// edition:2018
// check-pass
trait T {
async fn foo() {}
async fn bar(&self) {}
async fn baz() {
// Nested item must not ICE.
fn a() {}
}
}
fn main() {}