mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
28 lines
1.3 KiB
Text
28 lines
1.3 KiB
Text
error: taking a reference on `std::path::MAIN_SEPARATOR` conversion to `String`
|
|
--> $DIR/manual_main_separator_str.rs:23:19
|
|
|
|
|
LL | let _: &str = &MAIN_SEPARATOR.to_string();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `std::path::MAIN_SEPARATOR_STR`
|
|
|
|
|
= note: `-D clippy::manual-main-separator-str` implied by `-D warnings`
|
|
|
|
error: taking a reference on `std::path::MAIN_SEPARATOR` conversion to `String`
|
|
--> $DIR/manual_main_separator_str.rs:24:17
|
|
|
|
|
LL | let _ = len(&MAIN_SEPARATOR.to_string());
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `std::path::MAIN_SEPARATOR_STR`
|
|
|
|
error: taking a reference on `std::path::MAIN_SEPARATOR` conversion to `String`
|
|
--> $DIR/manual_main_separator_str.rs:25:23
|
|
|
|
|
LL | let _: Vec<u16> = MAIN_SEPARATOR.to_string().encode_utf16().collect();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `std::path::MAIN_SEPARATOR_STR`
|
|
|
|
error: taking a reference on `std::path::MAIN_SEPARATOR` conversion to `String`
|
|
--> $DIR/manual_main_separator_str.rs:29:12
|
|
|
|
|
LL | f: &MAIN_SEPARATOR.to_string(),
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `std::path::MAIN_SEPARATOR_STR`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|