rust/tests/ui/deprecated.stderr

35 lines
1.2 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`
2018-10-06 11:18:06 -05:00
--> $DIR/deprecated.rs:14:8
|
14 | #[warn(str_to_string)]
| ^^^^^^^^^^^^^
|
= 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`
2018-10-06 11:18:06 -05:00
--> $DIR/deprecated.rs:16:8
|
16 | #[warn(string_to_string)]
| ^^^^^^^^^^^^^^^^
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`
2018-10-06 11:18:06 -05:00
--> $DIR/deprecated.rs:18:8
|
18 | #[warn(unstable_as_slice)]
| ^^^^^^^^^^^^^^^^^
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`
2018-10-06 11:18:06 -05:00
--> $DIR/deprecated.rs:20:8
2017-08-01 10:54:21 -05:00
|
2018-10-06 11:18:06 -05:00
20 | #[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`
2018-10-06 11:18:06 -05:00
--> $DIR/deprecated.rs:22:8
2018-04-11 04:50:04 -05:00
|
2018-10-06 11:18:06 -05:00
22 | #[warn(misaligned_transmute)]
2018-04-11 04:50:04 -05:00
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to 5 previous errors
2018-01-16 10:06:27 -06:00