]> git.lizzy.rs Git - rust.git/blob - tests/ui/attrs.stderr
Adapt the *.stderr files of the ui-tests to the tool_lints
[rust.git] / tests / ui / attrs.stderr
1 error: you have declared `#[inline(always)]` on `test_attr_lint`. This is usually a bad idea
2  --> $DIR/attrs.rs:6:1
3   |
4 6 | #[inline(always)]
5   | ^^^^^^^^^^^^^^^^^
6   |
7   = note: `-D clippy::inline-always` implied by `-D warnings`
8
9 error: the since field must contain a semver-compliant version
10   --> $DIR/attrs.rs:27:14
11    |
12 27 | #[deprecated(since = "forever")]
13    |              ^^^^^^^^^^^^^^^^^
14    |
15    = note: `-D clippy::deprecated-semver` implied by `-D warnings`
16
17 error: the since field must contain a semver-compliant version
18   --> $DIR/attrs.rs:30:14
19    |
20 30 | #[deprecated(since = "1")]
21    |              ^^^^^^^^^^^
22
23 error: aborting due to 3 previous errors
24