summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/manual_main_separator_str.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/manual_main_separator_str.stderr')
-rw-r--r--src/tools/clippy/tests/ui/manual_main_separator_str.stderr28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/manual_main_separator_str.stderr b/src/tools/clippy/tests/ui/manual_main_separator_str.stderr
new file mode 100644
index 000000000..e6cefde66
--- /dev/null
+++ b/src/tools/clippy/tests/ui/manual_main_separator_str.stderr
@@ -0,0 +1,28 @@
+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
+