rust/src/test/ui/async-await/async-fn-elided-impl-lifetime-parameter.rs

17 lines
247 B
Rust
Raw Normal View History

// Check that `async fn` inside of an impl with `'_`
// in the header compiles correctly.
//
// Regression test for #63500.
//
// check-pass
#![feature(async_await)]
struct Foo<'a>(&'a u8);
impl Foo<'_> {
async fn bar() {}
}
fn main() { }