]> git.proxmox.com Git - rustc.git/blob - src/test/ui/cfg/cfg-target-vendor.rs
New upstream version 1.66.0+dfsg1
[rustc.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 }