(feature: &str)
| 214 | } |
| 215 | |
| 216 | fn use_feature_or_nothing(feature: &str) { |
| 217 | if has_feature(feature) { |
| 218 | use_feature(feature); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | fn use_feature(feature: &str) { |
| 223 | println!("cargo:rustc-cfg={}", feature); |
no test coverage detected