mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
18 lines
186 B
Rust
18 lines
186 B
Rust
|
//@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() {}
|