blob: a2b69d0662ee971fde2d7b72991158869b8cd8f8 [file] [log] [blame]
#![allow(unused)]
#[cfg(windows)]
//~^ non_minimal_cfg
fn hermit() {}
#[cfg(windows)]
//~^ non_minimal_cfg
fn wasi() {}
#[cfg(all(unix, not(windows)))]
//~^ non_minimal_cfg
//~| non_minimal_cfg
fn the_end() {}
#[cfg(any())]
fn any() {}
fn main() {}