summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/string_add_assign.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/string_add_assign.stderr')
-rw-r--r--src/tools/clippy/tests/ui/string_add_assign.stderr24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/string_add_assign.stderr b/src/tools/clippy/tests/ui/string_add_assign.stderr
new file mode 100644
index 000000000..7676175c1
--- /dev/null
+++ b/src/tools/clippy/tests/ui/string_add_assign.stderr
@@ -0,0 +1,24 @@
+error: you assigned the result of adding something to this string. Consider using `String::push_str()` instead
+ --> $DIR/string_add_assign.rs:10:9
+ |
+LL | x = x + ".";
+ | ^^^^^^^^^^^
+ |
+ = note: `-D clippy::string-add-assign` implied by `-D warnings`
+
+error: manual implementation of an assign operation
+ --> $DIR/string_add_assign.rs:10:9
+ |
+LL | x = x + ".";
+ | ^^^^^^^^^^^ help: replace it with: `x += "."`
+ |
+ = note: `-D clippy::assign-op-pattern` implied by `-D warnings`
+
+error: manual implementation of an assign operation
+ --> $DIR/string_add_assign.rs:19:5
+ |
+LL | x = x + 1;
+ | ^^^^^^^^^ help: replace it with: `x += 1`
+
+error: aborting due to 3 previous errors
+