mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
15 lines
190 B
Rust
15 lines
190 B
Rust
#![allow(unused)]
|
|
|
|
#[cfg(all(windows))]
|
|
fn hermit() {}
|
|
|
|
#[cfg(any(windows))]
|
|
fn wasi() {}
|
|
|
|
#[cfg(all(any(unix), all(not(windows))))]
|
|
fn the_end() {}
|
|
|
|
#[cfg(any())]
|
|
fn any() {}
|
|
|
|
fn main() {}
|