rust/tests/source/cfg_if/detect/os/other.rs

10 lines
161 B
Rust

//! Other operating systems
use crate::detect::Feature;
/// Performs run-time feature detection.
#[inline]
pub fn check_for(_x: Feature) -> bool {
false
}