rust/clippy_tests/examples/attrs.stderr

27 lines
694 B
Plaintext
Raw Normal View History

error: you have declared `#[inline(always)]` on `test_attr_lint`. This is usually a bad idea
--> attrs.rs:6:1
|
2017-02-08 14:58:07 +01:00
6 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
|
= note: `-D inline-always` implied by `-D warnings`
error: the since field must contain a semver-compliant version
--> attrs.rs:27:14
|
2017-02-08 14:58:07 +01:00
27 | #[deprecated(since = "forever")]
| ^^^^^^^^^^^^^^^^^
|
= note: `-D deprecated-semver` implied by `-D warnings`
error: the since field must contain a semver-compliant version
--> attrs.rs:30:14
|
2017-02-08 14:58:07 +01:00
30 | #[deprecated(since = "1")]
| ^^^^^^^^^^^
2017-07-28 09:08:09 +02:00
error: aborting due to 3 previous errors
To learn more, run the command again with --verbose.