18 lines
190 B
Rust
18 lines
190 B
Rust
![]() |
// revisions: rpass1 rpass2
|
||
|
// edition:2021
|
||
|
|
||
|
#![allow(unused)]
|
||
|
|
||
|
struct Foo;
|
||
|
|
||
|
impl Foo {
|
||
|
async fn f(&self, _: &&()) -> &() {
|
||
|
&()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[cfg(rpass2)]
|
||
|
enum Bar {}
|
||
|
|
||
|
fn main() {}
|