rust/tests/incremental/user-written-closure-synthetic-closure-conflict.rs

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

16 lines
183 B
Rust
Raw Normal View History

//@ revisions: rpass1 rpass2
//@ edition: 2024
#![allow(unused)]
fn main() {
#[cfg(rpass1)]
async || {};
#[cfg(rpass2)]
|| {
|| ();
|| ();
};
}