rust-clippy/tests/ui/deprecated.stderr

41 lines
1.4 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`
--> $DIR/deprecated.rs:1:8
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #[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`
--> $DIR/deprecated.rs:2:8
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #[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`
--> $DIR/deprecated.rs:3:8
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #[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`
--> $DIR/deprecated.rs:4:8
2017-08-01 15:54:21 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #[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`
--> $DIR/deprecated.rs:5:8
2018-04-11 09:50:04 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #[warn(misaligned_transmute)]
2018-04-11 09:50:04 +00:00
| ^^^^^^^^^^^^^^^^^^^^
2019-01-27 12:46:22 +00:00
error: lint `str_to_string` has been removed: `using `str::to_string` is common even today and specialization will likely happen soon`
--> $DIR/deprecated.rs:1:8
|
LL | #[warn(str_to_string)]
| ^^^^^^^^^^^^^
error: aborting due to 6 previous errors
2018-01-16 16:06:27 +00:00