]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cfg/cfg-target-compact.rs
Rollup merge of #97786 - ferrocene:pa-fix-simulate-remap-prefix, r=Mark-Simulacrum
[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 }