(feature: &str)
| 220 | } |
| 221 | |
| 222 | fn use_feature(feature: &str) { |
| 223 | println!("cargo:rustc-cfg={}", feature); |
| 224 | } |
| 225 | |
| 226 | /// Test whether the rustc at `var("RUSTC")` supports the given feature. |
| 227 | fn has_feature(feature: &str) -> bool { |
no outgoing calls
no test coverage detected