mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
26 lines
831 B
Text
26 lines
831 B
Text
error: you have declared `#[inline(always)]` on `test_attr_lint`. This is usually a bad idea
|
|
--> $DIR/attrs.rs:5:1
|
|
|
|
|
LL | #[inline(always)]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::inline-always` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::inline_always)]`
|
|
|
|
error: the since field must contain a semver-compliant version
|
|
--> $DIR/attrs.rs:27:14
|
|
|
|
|
LL | #[deprecated(since = "forever")]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::deprecated-semver` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::deprecated_semver)]`
|
|
|
|
error: the since field must contain a semver-compliant version
|
|
--> $DIR/attrs.rs:32:14
|
|
|
|
|
LL | #[deprecated(since = "1")]
|
|
| ^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|