rust/src/test/run-pass/conditional-compile-arch.rs

6 lines
88 B
Rust
Raw Normal View History

#[cfg(target_arch = "x86")]
fn main() { }
#[cfg(target_arch = "x86_64")]
fn main() { }