rust-clippy/tests/ui/mismatched_target_os_unix.rs

61 lines
743 B
Rust
Raw Normal View History

2020-04-22 21:01:25 +00:00
#![warn(clippy::mismatched_target_os)]
#![allow(unused)]
#[cfg(linux)]
fn linux() {}
#[cfg(freebsd)]
fn freebsd() {}
#[cfg(dragonfly)]
fn dragonfly() {}
#[cfg(openbsd)]
fn openbsd() {}
#[cfg(netbsd)]
fn netbsd() {}
#[cfg(macos)]
fn macos() {}
#[cfg(ios)]
fn ios() {}
#[cfg(android)]
fn android() {}
#[cfg(emscripten)]
fn emscripten() {}
#[cfg(fuchsia)]
fn fuchsia() {}
#[cfg(haiku)]
fn haiku() {}
2020-04-26 19:26:19 +00:00
#[cfg(illumos)]
fn illumos() {}
#[cfg(l4re)]
fn l4re() {}
#[cfg(redox)]
fn redox() {}
#[cfg(solaris)]
fn solaris() {}
#[cfg(vxworks)]
fn vxworks() {}
// list with conditions
2020-04-26 19:26:19 +00:00
#[cfg(all(not(any(solaris, linux)), freebsd))]
2020-04-22 21:01:25 +00:00
fn list() {}
// correct use, should be ignored
#[cfg(target_os = "freebsd")]
2020-04-26 19:26:19 +00:00
fn correct() {}
2020-04-22 21:01:25 +00:00
fn main() {}