blob: e2062e82725c0507fad934ec9f6720dfab28ea71 [file] [log] [blame]
// 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() {}