14 lines
159 B
Rust
14 lines
159 B
Rust
//@run-rustfix
|
|
|
|
#![allow(unused)]
|
|
|
|
#[cfg(windows)]
|
|
fn hermit() {}
|
|
|
|
#[cfg(windows)]
|
|
fn wasi() {}
|
|
|
|
#[cfg(all(unix, not(windows)))]
|
|
fn the_end() {}
|
|
|
|
fn main() {}
|