summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/cfg_features.stderr
blob: 00405985d48c76087652fba46597f799a7bdc9e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error: feature may misspelled as features
  --> $DIR/cfg_features.rs:4:11
   |
LL |     #[cfg(features = "not-really-a-feature")]
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use: `feature = "not-really-a-feature"`
   |
   = note: `-D clippy::maybe-misused-cfg` implied by `-D warnings`

error: feature may misspelled as features
  --> $DIR/cfg_features.rs:7:34
   |
LL |     #[cfg(all(feature = "right", features = "wrong"))]
   |                                  ^^^^^^^^^^^^^^^^^^ help: use: `feature = "wrong"`

error: feature may misspelled as features
  --> $DIR/cfg_features.rs:10:15
   |
LL |     #[cfg(all(features = "wrong1", any(feature = "right", features = "wrong2", feature, features)))]
   |               ^^^^^^^^^^^^^^^^^^^ help: use: `feature = "wrong1"`

error: feature may misspelled as features
  --> $DIR/cfg_features.rs:10:59
   |
LL |     #[cfg(all(features = "wrong1", any(feature = "right", features = "wrong2", feature, features)))]
   |                                                           ^^^^^^^^^^^^^^^^^^^ help: use: `feature = "wrong2"`

error: aborting due to 4 previous errors