summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-internal/check_clippy_version_attribute.stderr
blob: 2aa4de490bcf6b99e1dbdf9ca076a366dc15b9f9 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
error: this item has an invalid `clippy::version` attribute
  --> $DIR/check_clippy_version_attribute.rs:40:1
   |
LL | / declare_tool_lint! {
LL | |     #[clippy::version = "1.2.3.4.5.6"]
LL | |     pub clippy::INVALID_ONE,
LL | |     Warn,
LL | |     "One",
LL | |     report_in_external_macro: true
LL | | }
   | |_^
   |
note: the lint level is defined here
  --> $DIR/check_clippy_version_attribute.rs:1:9
   |
LL | #![deny(clippy::internal)]
   |         ^^^^^^^^^^^^^^^^
   = note: `#[deny(clippy::invalid_clippy_version_attribute)]` implied by `#[deny(clippy::internal)]`
   = help: please use a valid semantic version, see `doc/adding_lints.md`
   = note: this error originates in the macro `$crate::declare_tool_lint` which comes from the expansion of the macro `declare_tool_lint` (in Nightly builds, run with -Z macro-backtrace for more info)

error: this item has an invalid `clippy::version` attribute
  --> $DIR/check_clippy_version_attribute.rs:48:1
   |
LL | / declare_tool_lint! {
LL | |     #[clippy::version = "I'm a string"]
LL | |     pub clippy::INVALID_TWO,
LL | |     Warn,
LL | |     "Two",
LL | |     report_in_external_macro: true
LL | | }
   | |_^
   |
   = help: please use a valid semantic version, see `doc/adding_lints.md`
   = note: this error originates in the macro `$crate::declare_tool_lint` which comes from the expansion of the macro `declare_tool_lint` (in Nightly builds, run with -Z macro-backtrace for more info)

error: this lint is missing the `clippy::version` attribute or version value
  --> $DIR/check_clippy_version_attribute.rs:59:1
   |
LL | / declare_tool_lint! {
LL | |     #[clippy::version]
LL | |     pub clippy::MISSING_ATTRIBUTE_ONE,
LL | |     Warn,
LL | |     "Two",
LL | |     report_in_external_macro: true
LL | | }
   | |_^
   |
   = note: `#[deny(clippy::missing_clippy_version_attribute)]` implied by `#[deny(clippy::internal)]`
   = help: please use a `clippy::version` attribute, see `doc/adding_lints.md`
   = note: this error originates in the macro `$crate::declare_tool_lint` which comes from the expansion of the macro `declare_tool_lint` (in Nightly builds, run with -Z macro-backtrace for more info)

error: this lint is missing the `clippy::version` attribute or version value
  --> $DIR/check_clippy_version_attribute.rs:67:1
   |
LL | / declare_tool_lint! {
LL | |     pub clippy::MISSING_ATTRIBUTE_TWO,
LL | |     Warn,
LL | |     "Two",
LL | |     report_in_external_macro: true
LL | | }
   | |_^
   |
   = help: please use a `clippy::version` attribute, see `doc/adding_lints.md`
   = note: this error originates in the macro `$crate::declare_tool_lint` which comes from the expansion of the macro `declare_tool_lint` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to 4 previous errors