Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
incremental
/
async-lifetimes.rs
blob: f12f995193878beba9e69daa69de831154401c79 [
file
] [
log
] [
blame
]
//@ revisions: rpass1 rpass2
//@ edition:2021
//@ ignore-backends: gcc
// See https://github.com/rust-lang/rust/issues/98890
#![
allow
(
unused
)]
struct
Foo
;
impl
Foo
{
async
fn
f
(&
self
,
_
:
&&())
->
&()
{
&()
}
}
#[
cfg
(
rpass2
)]
enum
Bar
{}
fn
main
()
{}