DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / tests / ui / impl-trait / in-trait / default-body-type-err-2.rs
12345678910
//@ edition:2021 pub trait Foo { async fn woopsie_async(&self) -> String { 42 //~^ ERROR mismatched types } } fn main() {}