Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lifetimes
/
issue-93911.rs
blob: 0452472b3e2b1b7426ffb3ee2f5531512f0e3815 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}