mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
344 B
Rust
12 lines
344 B
Rust
// edition:2018
|
|
trait T {
|
|
async fn foo() {} //~ ERROR functions in traits cannot be declared `async`
|
|
async fn bar(&self) {} //~ ERROR functions in traits cannot be declared `async`
|
|
async fn baz() { //~ ERROR functions in traits cannot be declared `async`
|
|
// Nested item must not ICE.
|
|
fn a() {}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|