2017-02-07 14:05:30 -06:00
|
|
|
error: you have declared `#[inline(always)]` on `test_attr_lint`. This is usually a bad idea
|
2020-07-14 07:59:59 -05:00
|
|
|
--> $DIR/attrs.rs:9:1
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | #[inline(always)]
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::inline-always` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: the since field must contain a semver-compliant version
|
2020-07-14 07:59:59 -05:00
|
|
|
--> $DIR/attrs.rs:29:14
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | #[deprecated(since = "forever")]
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::deprecated-semver` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: the since field must contain a semver-compliant version
|
2020-07-14 07:59:59 -05:00
|
|
|
--> $DIR/attrs.rs:32:14
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | #[deprecated(since = "1")]
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2020-07-14 07:59:59 -05:00
|
|
|
error: restriction lints are not meant to be all enabled
|
|
|
|
--> $DIR/attrs.rs:4:9
|
|
|
|
|
|
|
|
|
LL | #![warn(clippy::restriction)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::blanket-clippy-restriction-lints` implied by `-D warnings`
|
|
|
|
= help: try enabling only the lints you really need
|
|
|
|
|
|
|
|
error: restriction lints are not meant to be all enabled
|
|
|
|
--> $DIR/attrs.rs:5:9
|
|
|
|
|
|
|
|
|
LL | #![deny(clippy::restriction)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: try enabling only the lints you really need
|
|
|
|
|
|
|
|
error: restriction lints are not meant to be all enabled
|
|
|
|
--> $DIR/attrs.rs:6:11
|
|
|
|
|
|
|
|
|
LL | #![forbid(clippy::restriction)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: try enabling only the lints you really need
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|