]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cfg/cfg-target-compact.rs
Merge commit 'd822110d3b5625b9dc80ccc442e06fc3cc851d76' into clippyup
[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 }