blob: 8d55e7293df8b6946e953c4ee9650d5126c5297c [file] [log] [blame] [edit]
//@ revisions: rpass1 rpass2
//@ edition:2021
// 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() {}