Auto merge of #12871 - Jacherr:issue-12768, r=blyxyas
Modify str_to_string to be machine-applicable Fixes https://github.com/rust-lang/rust-clippy/issues/12768 I'm not sure if there is any potential for edge cases with this - since it only ever acts on `&str` types I can't think of any, and especially since the methods do the same thing anyway. changelog: allow `str_to_string` lint to be automatically applied
This commit is contained in:
commit
568f4fc732
@ -399,13 +399,17 @@ fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &Expr<'_>) {
|
|||||||
&& let ty::Ref(_, ty, ..) = ty.kind()
|
&& let ty::Ref(_, ty, ..) = ty.kind()
|
||||||
&& ty.is_str()
|
&& ty.is_str()
|
||||||
{
|
{
|
||||||
span_lint_and_help(
|
let mut applicability = Applicability::MachineApplicable;
|
||||||
|
let snippet = snippet_with_applicability(cx, self_arg.span, "..", &mut applicability);
|
||||||
|
|
||||||
|
span_lint_and_sugg(
|
||||||
cx,
|
cx,
|
||||||
STR_TO_STRING,
|
STR_TO_STRING,
|
||||||
expr.span,
|
expr.span,
|
||||||
"`to_string()` called on a `&str`",
|
"`to_string()` called on a `&str`",
|
||||||
None,
|
"try",
|
||||||
"consider using `.to_owned()`",
|
format!("{snippet}.to_owned()"),
|
||||||
|
applicability,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
9
tests/ui/str_to_string.fixed
Normal file
9
tests/ui/str_to_string.fixed
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#![warn(clippy::str_to_string)]
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let hello = "hello world".to_owned();
|
||||||
|
//~^ ERROR: `to_string()` called on a `&str`
|
||||||
|
let msg = &hello[..];
|
||||||
|
msg.to_owned();
|
||||||
|
//~^ ERROR: `to_string()` called on a `&str`
|
||||||
|
}
|
@ -2,9 +2,8 @@ error: `to_string()` called on a `&str`
|
|||||||
--> tests/ui/str_to_string.rs:4:17
|
--> tests/ui/str_to_string.rs:4:17
|
||||||
|
|
|
|
||||||
LL | let hello = "hello world".to_string();
|
LL | let hello = "hello world".to_string();
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"hello world".to_owned()`
|
||||||
|
|
|
|
||||||
= help: consider using `.to_owned()`
|
|
||||||
= note: `-D clippy::str-to-string` implied by `-D warnings`
|
= note: `-D clippy::str-to-string` implied by `-D warnings`
|
||||||
= help: to override `-D warnings` add `#[allow(clippy::str_to_string)]`
|
= help: to override `-D warnings` add `#[allow(clippy::str_to_string)]`
|
||||||
|
|
||||||
@ -12,9 +11,7 @@ error: `to_string()` called on a `&str`
|
|||||||
--> tests/ui/str_to_string.rs:7:5
|
--> tests/ui/str_to_string.rs:7:5
|
||||||
|
|
|
|
||||||
LL | msg.to_string();
|
LL | msg.to_string();
|
||||||
| ^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^ help: try: `msg.to_owned()`
|
||||||
|
|
|
||||||
= help: consider using `.to_owned()`
|
|
||||||
|
|
||||||
error: aborting due to 2 previous errors
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user