mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
18 lines
251 B
Rust
18 lines
251 B
Rust
//@ edition:2018
|
|
|
|
async fn free(); //~ ERROR without a body
|
|
|
|
struct A;
|
|
impl A {
|
|
async fn inherent(); //~ ERROR without body
|
|
}
|
|
|
|
trait B {
|
|
async fn associated();
|
|
}
|
|
impl B for A {
|
|
async fn associated(); //~ ERROR without body
|
|
}
|
|
|
|
fn main() {}
|