blob: 618604d06b17319caa185dc6618ee258865f7e21 [file] [log] [blame] [edit]
//@ revisions: rpass1 rpass2
//@ edition: 2024
#![allow(unused)]
fn main() {
#[cfg(rpass1)]
async || {};
#[cfg(rpass2)]
|| {
|| ();
|| ();
};
}
OSZAR »