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.stderr8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tools/clippy/tests/ui/string_add_assign.stderr b/src/tools/clippy/tests/ui/string_add_assign.stderr
index 7676175c1..7d37c98a8 100644
--- a/src/tools/clippy/tests/ui/string_add_assign.stderr
+++ b/src/tools/clippy/tests/ui/string_add_assign.stderr
@@ -1,21 +1,23 @@
error: you assigned the result of adding something to this string. Consider using `String::push_str()` instead
- --> $DIR/string_add_assign.rs:10:9
+ --> $DIR/string_add_assign.rs:8:9
|
LL | x = x + ".";
| ^^^^^^^^^^^
|
= note: `-D clippy::string-add-assign` implied by `-D warnings`
+ = help: to override `-D warnings` add `#[allow(clippy::string_add_assign)]`
error: manual implementation of an assign operation
- --> $DIR/string_add_assign.rs:10:9
+ --> $DIR/string_add_assign.rs:8:9
|
LL | x = x + ".";
| ^^^^^^^^^^^ help: replace it with: `x += "."`
|
= note: `-D clippy::assign-op-pattern` implied by `-D warnings`
+ = help: to override `-D warnings` add `#[allow(clippy::assign_op_pattern)]`
error: manual implementation of an assign operation
- --> $DIR/string_add_assign.rs:19:5
+ --> $DIR/string_add_assign.rs:17:5
|
LL | x = x + 1;
| ^^^^^^^^^ help: replace it with: `x += 1`