summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/cfg_features.stderr
blob: e1593e2071b495a97e4aadb296c56b965be64589 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
error: 'feature' may be misspelled as 'features'
  --> $DIR/cfg_features.rs:4:11
   |
LL |     #[cfg(features = "not-really-a-feature")]
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `feature = "not-really-a-feature"`
   |
   = note: `-D clippy::maybe-misused-cfg` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::maybe_misused_cfg)]`

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

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

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

error: 'test' may be misspelled as 'tests'
  --> $DIR/cfg_features.rs:18:11
   |
LL |     #[cfg(tests)]
   |           ^^^^^ help: did you mean: `test`

error: 'test' may be misspelled as 'Test'
  --> $DIR/cfg_features.rs:21:11
   |
LL |     #[cfg(Test)]
   |           ^^^^ help: did you mean: `test`

error: 'test' may be misspelled as 'tests'
  --> $DIR/cfg_features.rs:25:15
   |
LL |     #[cfg(all(tests, Test))]
   |               ^^^^^ help: did you mean: `test`

error: 'test' may be misspelled as 'Test'
  --> $DIR/cfg_features.rs:25:22
   |
LL |     #[cfg(all(tests, Test))]
   |                      ^^^^ help: did you mean: `test`

error: aborting due to 8 previous errors