rust/tests/ui/attrs.stderr

25 lines
678 B
Text
Raw Normal View History

error: you have declared `#[inline(always)]` on `test_attr_lint`. This is usually a bad idea
2018-12-10 06:27:19 +01:00
--> $DIR/attrs.rs:12:1
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | #[inline(always)]
2018-10-06 18:18:06 +02:00
| ^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::inline-always` implied by `-D warnings`
error: the since field must contain a semver-compliant version
2018-12-10 06:27:19 +01:00
--> $DIR/attrs.rs:32:14
|
2018-12-27 16:57:55 +01:00
LL | #[deprecated(since = "forever")]
| ^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::deprecated-semver` implied by `-D warnings`
error: the since field must contain a semver-compliant version
2018-12-10 06:27:19 +01:00
--> $DIR/attrs.rs:35:14
|
2018-12-27 16:57:55 +01:00
LL | #[deprecated(since = "1")]
| ^^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 3 previous errors