rust/tests/ui/mismatched_target_os_non_unix.rs
2020-04-26 21:27:29 +02:00

30 lines
460 B
Rust

// run-rustfix
#![warn(clippy::mismatched_target_os)]
#![allow(unused)]
#[cfg(cloudabi)]
fn cloudabi() {}
#[cfg(hermit)]
fn hermit() {}
#[cfg(wasi)]
fn wasi() {}
#[cfg(none)]
fn none() {}
// list with conditions
#[cfg(all(not(any(windows, cloudabi)), 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() {}