mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
29 lines
952 B
Text
29 lines
952 B
Text
error: unneeded sub `cfg` when there is only one condition
|
|
--> tests/ui/non_minimal_cfg.rs:3:7
|
|
|
|
|
LL | #[cfg(all(windows))]
|
|
| ^^^^^^^^^^^^ help: try: `windows`
|
|
|
|
|
= note: `-D clippy::non-minimal-cfg` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::non_minimal_cfg)]`
|
|
|
|
error: unneeded sub `cfg` when there is only one condition
|
|
--> tests/ui/non_minimal_cfg.rs:6:7
|
|
|
|
|
LL | #[cfg(any(windows))]
|
|
| ^^^^^^^^^^^^ help: try: `windows`
|
|
|
|
error: unneeded sub `cfg` when there is only one condition
|
|
--> tests/ui/non_minimal_cfg.rs:9:11
|
|
|
|
|
LL | #[cfg(all(any(unix), all(not(windows))))]
|
|
| ^^^^^^^^^ help: try: `unix`
|
|
|
|
error: unneeded sub `cfg` when there is only one condition
|
|
--> tests/ui/non_minimal_cfg.rs:9:22
|
|
|
|
|
LL | #[cfg(all(any(unix), all(not(windows))))]
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `not(windows)`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|