summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/mismatched_target_os_non_unix.fixed
blob: f219a570e7fccc06f3c4ea88c6c0c47615d11e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// run-rustfix

#![warn(clippy::mismatched_target_os)]
#![allow(unused)]

#[cfg(target_os = "hermit")]
fn hermit() {}

#[cfg(target_os = "wasi")]
fn wasi() {}

#[cfg(target_os = "none")]
fn none() {}

// list with conditions
#[cfg(all(not(windows), target_os = "wasi"))]
fn list() {}

// windows is a valid target family, should be ignored
#[cfg(windows)]
fn windows() {}

// correct use, should be ignored
#[cfg(target_os = "hermit")]
fn correct() {}

fn main() {}