Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
lifetimes
/
issue-93911.rs
blob: 0452472b3e2b1b7426ffb3ee2f5531512f0e3815 [
file
] [
log
] [
blame
]
//@ 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
()
{}