summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/non_minimal_cfg.fixed
blob: 430caafb33e12fb0814cc30b927864f2218da6f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//@run-rustfix

#![allow(unused)]

#[cfg(windows)]
fn hermit() {}

#[cfg(windows)]
fn wasi() {}

#[cfg(all(unix, not(windows)))]
fn the_end() {}

#[cfg(any())]
fn any() {}

fn main() {}