rust-clippy/tests/ui/non_minimal_cfg.rs

15 lines
190 B
Rust

#![allow(unused)]
#[cfg(all(windows))]
fn hermit() {}
#[cfg(any(windows))]
fn wasi() {}
#[cfg(all(any(unix), all(not(windows))))]
fn the_end() {}
#[cfg(any())]
fn any() {}
fn main() {}