rust/tests/incremental/async-lifetimes.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
247 B
Rust
Raw Normal View History

2022-07-06 16:56:35 +08:00
//@ revisions: rpass1 rpass2
//@ edition:2021
// See https://github.com/rust-lang/rust/issues/98890
2022-07-06 16:56:35 +08:00
#![allow(unused)]
struct Foo;
impl Foo {
async fn f(&self, _: &&()) -> &() {
&()
}
}
#[cfg(rpass2)]
enum Bar {}
fn main() {}