mirror of
https://github.com/rust-lang/rust.git
synced 2026-03-19 11:29:28 +00:00
reverted changed cfg test cases
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
// run-pass
|
||||
// pretty-expanded FIXME #23616
|
||||
// ignore-cloudabi no target_family
|
||||
// ignore-wasm32-bare no target_family
|
||||
// ignore-sgx
|
||||
|
||||
#[cfg(windows)]
|
||||
pub fn main() {
|
||||
@@ -8,7 +11,3 @@ pub fn main() {
|
||||
#[cfg(unix)]
|
||||
pub fn main() {
|
||||
}
|
||||
|
||||
#[cfg(not(any(windows, unix)))]
|
||||
pub fn main() {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
// run-pass
|
||||
// ignore-cloudabi no target_family
|
||||
// ignore-wasm32-bare no target_family
|
||||
// ignore-sgx
|
||||
|
||||
// pretty-expanded FIXME #23616
|
||||
|
||||
#[cfg(target_family = "windows")]
|
||||
@@ -8,7 +12,3 @@ pub fn main() {
|
||||
#[cfg(target_family = "unix")]
|
||||
pub fn main() {
|
||||
}
|
||||
|
||||
#[cfg(not(any(target_family = "windows", target_family = "unix")))]
|
||||
pub fn main() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user