mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
19 lines
244 B
Rust
19 lines
244 B
Rust
|
//@ check-pass
|
||
|
//@ edition:2021
|
||
|
|
||
|
#![allow(dead_code)]
|
||
|
|
||
|
struct Foo<'a>(&'a u32);
|
||
|
|
||
|
impl<'a> Foo<'a> {
|
||
|
async fn foo() {
|
||
|
struct Bar<'b>(&'b u32);
|
||
|
|
||
|
impl<'b> Bar<'b> {
|
||
|
async fn bar() {}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|