]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/attrs.stderr
d44f1e8739280dd184156a75cdc615c7b2963b39
[rust.git] / clippy_tests / examples / attrs.stderr
1 error: you have declared `#[inline(always)]` on `test_attr_lint`. This is usually a bad idea
2  --> attrs.rs:6:1
3   |
4 6 | #[inline(always)]
5   | ^^^^^^^^^^^^^^^^^
6   |
7   = note: `-D inline-always` implied by `-D warnings`
8
9 error: the since field must contain a semver-compliant version
10   --> attrs.rs:27:14
11    |
12 27 | #[deprecated(since = "forever")]
13    |              ^^^^^^^^^^^^^^^^^
14    |
15    = note: `-D deprecated-semver` implied by `-D warnings`
16
17 error: the since field must contain a semver-compliant version
18   --> attrs.rs:30:14
19    |
20 30 | #[deprecated(since = "1")]
21    |              ^^^^^^^^^^^
22    |
23    = note: `-D deprecated-semver` implied by `-D warnings`
24
25 error: aborting due to previous error(s)
26
27 error: Could not compile `clippy_tests`.
28
29 To learn more, run the command again with --verbose.