]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cfg/cfg-target-compact.rs
Rollup merge of #105758 - Nilstrieb:typeck-results-mod, r=compiler-errors
[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 }