rust-clippy/tests/ui/deprecated.stderr

35 lines
1.2 KiB
Text
Raw Normal View History

2018-07-16 13:43:30 +00:00
error: lint `str_to_string` has been removed: `using `str::to_string` is common even today and specialization will likely happen soon`
2018-12-10 05:27:19 +00:00
--> $DIR/deprecated.rs:10:8
2018-10-06 16:18:06 +00:00
|
2018-12-10 05:27:19 +00:00
10 | #[warn(str_to_string)]
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^
|
= note: `-D renamed-and-removed-lints` implied by `-D warnings`
2017-08-01 15:54:21 +00:00
2018-07-16 13:43:30 +00:00
error: lint `string_to_string` has been removed: `using `string::to_string` is common even today and specialization will likely happen soon`
2018-12-10 05:27:19 +00:00
--> $DIR/deprecated.rs:11:8
2018-10-06 16:18:06 +00:00
|
2018-12-10 05:27:19 +00:00
11 | #[warn(string_to_string)]
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^
2017-08-01 15:54:21 +00:00
2018-07-16 13:43:30 +00:00
error: lint `unstable_as_slice` has been removed: ``Vec::as_slice` has been stabilized in 1.7`
2018-12-10 05:27:19 +00:00
--> $DIR/deprecated.rs:12:8
2018-10-06 16:18:06 +00:00
|
2018-12-10 05:27:19 +00:00
12 | #[warn(unstable_as_slice)]
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^
2017-08-01 15:54:21 +00:00
2018-07-16 13:43:30 +00:00
error: lint `unstable_as_mut_slice` has been removed: ``Vec::as_mut_slice` has been stabilized in 1.7`
2018-12-10 05:27:19 +00:00
--> $DIR/deprecated.rs:13:8
2017-08-01 15:54:21 +00:00
|
2018-12-10 05:27:19 +00:00
13 | #[warn(unstable_as_mut_slice)]
2017-08-01 15:54:21 +00:00
| ^^^^^^^^^^^^^^^^^^^^^
2018-07-16 13:43:30 +00:00
error: lint `misaligned_transmute` has been removed: `this lint has been split into cast_ptr_alignment and transmute_ptr_to_ptr`
2018-12-10 05:27:19 +00:00
--> $DIR/deprecated.rs:14:8
2018-04-11 09:50:04 +00:00
|
2018-12-10 05:27:19 +00:00
14 | #[warn(misaligned_transmute)]
2018-04-11 09:50:04 +00:00
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to 5 previous errors
2018-01-16 16:06:27 +00:00