rust/tests/ui/deprecated.stderr

41 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-07-16 08:43:30 -05: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 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | #[warn(str_to_string)]
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^
|
= note: `-D renamed-and-removed-lints` implied by `-D warnings`
2017-08-01 10:54:21 -05:00
2018-07-16 08:43:30 -05: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 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | #[warn(string_to_string)]
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^^^
2017-08-01 10:54:21 -05:00
2018-07-16 08:43:30 -05: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 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | #[warn(unstable_as_slice)]
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^^^^
2017-08-01 10:54:21 -05:00
2018-07-16 08:43:30 -05: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 10:54:21 -05:00
|
2018-12-27 09:57:55 -06:00
LL | #[warn(unstable_as_mut_slice)]
2017-08-01 10:54:21 -05:00
| ^^^^^^^^^^^^^^^^^^^^^
2018-07-16 08:43:30 -05: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 04:50:04 -05:00
|
2018-12-27 09:57:55 -06:00
LL | #[warn(misaligned_transmute)]
2018-04-11 04:50:04 -05:00
| ^^^^^^^^^^^^^^^^^^^^
2019-01-27 06:46:22 -06: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 10:06:27 -06:00