mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 06:34:22 +00:00
13 lines
217 B
Rust
13 lines
217 B
Rust
//@ build-pass
|
|
//@ ignore-sgx
|
|
|
|
|
|
#[cfg(target_family = "windows")]
|
|
pub fn main() {}
|
|
|
|
#[cfg(target_family = "unix")]
|
|
pub fn main() {}
|
|
|
|
#[cfg(all(target_family = "wasm", not(target_os = "emscripten")))]
|
|
pub fn main() {}
|