]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cfg/cfg-target-vendor.rs
Rollup merge of #105758 - Nilstrieb:typeck-results-mod, r=compiler-errors
[rust.git] / src / test / ui / cfg / cfg-target-vendor.rs
1 // run-pass
2 #[cfg(target_vendor = "unknown")]
3 pub fn main() {
4 }
5
6 #[cfg(not(target_vendor = "unknown"))]
7 pub fn main() {
8 }