]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cfg/cfg-target-compact.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[rust.git] / src / test / ui / cfg / cfg-target-compact.rs
1 // run-pass
2 #![feature(cfg_target_compact)]
3
4 #[cfg(target(os = "linux", pointer_width = "64"))]
5 pub fn main() {
6 }
7
8 #[cfg(not(target(os = "linux", pointer_width = "64")))]
9 pub fn main() {
10 }