(feature: &str)
| 29 | } |
| 30 | |
| 31 | fn use_feature(feature: &str) { |
| 32 | println!("cargo:rustc-cfg={}", feature); |
| 33 | } |
| 34 | |
| 35 | /// Test whether the rustc at `var("RUSTC")` supports the given feature. |
| 36 | fn has_feature(feature: &str) -> bool { |
no outgoing calls
no test coverage detected