blob: 32026a22a1616594c43008c87ce685bd2ef1dbef [file] [log] [blame]
//@ edition:2018
struct Xyz {
a: u64,
}
trait Foo {}
impl Xyz {
async fn do_sth<'a>(
&'a self, foo: &dyn Foo
) -> &dyn Foo
{
//~^ ERROR explicit lifetime required in the type of `foo` [E0621]
foo
}
}
fn main() {}