]> git.proxmox.com Git - rustc.git/blame - src/test/ui/cfg/cfg-target-family.rs
New upstream version 1.50.0+dfsg1
[rustc.git] / src / test / ui / cfg / cfg-target-family.rs
CommitLineData
b7449926 1// run-pass
abe05a73 2// ignore-wasm32-bare no target_family
48663c56 3// ignore-sgx
abe05a73 4
c34b1796
AL
5// pretty-expanded FIXME #23616
6
223e47cc
LB
7#[cfg(target_family = "windows")]
8pub fn main() {
9}
10
11#[cfg(target_family = "unix")]
12pub fn main() {
13}