blob: 29bcbe16d835ac7df5ad9f1d7126de6f8bda45d4 [file] [log] [blame]
// edition:2021
#![allow(incomplete_features)]
pub trait Foo {
async fn woopsie_async(&self) -> String {
42
//~^ ERROR mismatched types
}
}
fn main() {}