Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
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() {}
|