rust/tests/ui/cfg_features.fixed

30 lines
898 B
Rust
Raw Normal View History

2023-07-27 06:40:22 -05:00
#![warn(clippy::maybe_misused_cfg)]
fn main() {
#[cfg(feature = "not-really-a-feature")]
//~^ ERROR: feature may misspelled as features
//~| NOTE: `-D clippy::maybe-misused-cfg` implied by `-D warnings`
2023-07-27 06:40:22 -05:00
let _ = 1 + 2;
#[cfg(all(feature = "right", feature = "wrong"))]
//~^ ERROR: feature may misspelled as features
2023-07-27 06:40:22 -05:00
let _ = 1 + 2;
#[cfg(all(feature = "wrong1", any(feature = "right", feature = "wrong2", feature, features)))]
//~^ ERROR: feature may misspelled as features
//~| ERROR: feature may misspelled as features
2023-07-27 06:40:22 -05:00
let _ = 1 + 2;
2023-11-16 04:32:26 -06:00
#[cfg(test)]
//~^ ERROR: 'test' may be misspelled as 'tests'
let _ = 2;
#[cfg(test)]
//~^ ERROR: 'test' may be misspelled as 'Test'
let _ = 2;
#[cfg(all(test, test))]
//~^ ERROR: 'test' may be misspelled as 'tests'
//~| ERROR: 'test' may be misspelled as 'Test'
let _ = 2;
2023-07-27 06:40:22 -05:00
}