2023-03-24 13:04:35 +00:00
|
|
|
error: taking a reference on `std::path::MAIN_SEPARATOR` conversion to `String`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_main_separator_str.rs:21:19
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
|
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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::manual_main_separator_str)]`
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
error: taking a reference on `std::path::MAIN_SEPARATOR` conversion to `String`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_main_separator_str.rs:22:17
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
|
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`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_main_separator_str.rs:23:23
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
|
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`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_main_separator_str.rs:27:12
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
|
LL | f: &MAIN_SEPARATOR.to_string(),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `std::path::MAIN_SEPARATOR_STR`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|