blob: 5deafe5c65ffe310ee92d443e02299ad8cde4548 [file] [log] [blame] [edit]
//@ edition:2021
pub trait Foo {
async fn woopsie_async(&self) -> String {
42
//~^ ERROR mismatched types
}
}
fn main() {}