mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
250 B
Rust
13 lines
250 B
Rust
//@ build-pass
|
|
//@ ignore-sgx
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
#[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() {}
|