blob: 76ed827d5973e4e9b4427840af9eda54a70c0a90 [file] [log] [blame]
// Test that async fn works when nested inside of
// impls with lifetime parameters.
//
// check-pass
// edition:2018
struct Foo<'a>(&'a ());
impl<'a> Foo<'a> {
fn test() {
async fn test() {}
}
}
fn main() { }