mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
Fix FP in inherent_to_string when the function has generic parameters
This commit is contained in:
parent
67087a1b4e
commit
19a377510c
@ -106,6 +106,7 @@ impl<'tcx> LateLintPass<'tcx> for InherentToString {
|
|||||||
let decl = &signature.decl;
|
let decl = &signature.decl;
|
||||||
if decl.implicit_self.has_implicit_self();
|
if decl.implicit_self.has_implicit_self();
|
||||||
if decl.inputs.len() == 1;
|
if decl.inputs.len() == 1;
|
||||||
|
if impl_item.generics.params.is_empty();
|
||||||
|
|
||||||
// Check if return type is String
|
// Check if return type is String
|
||||||
if is_type_diagnostic_item(cx, return_ty(cx, impl_item.hir_id), sym::string_type);
|
if is_type_diagnostic_item(cx, return_ty(cx, impl_item.hir_id), sym::string_type);
|
||||||
|
@ -14,6 +14,7 @@ struct C;
|
|||||||
struct D;
|
struct D;
|
||||||
struct E;
|
struct E;
|
||||||
struct F;
|
struct F;
|
||||||
|
struct G;
|
||||||
|
|
||||||
impl A {
|
impl A {
|
||||||
// Should be detected; emit warning
|
// Should be detected; emit warning
|
||||||
@ -73,6 +74,13 @@ impl F {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl G {
|
||||||
|
// Should not be detected, as it does not match the function signature
|
||||||
|
fn to_string<const _N: usize>(&self) -> String {
|
||||||
|
"G.to_string()".to_string()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let a = A;
|
let a = A;
|
||||||
a.to_string();
|
a.to_string();
|
||||||
@ -93,4 +101,7 @@ fn main() {
|
|||||||
|
|
||||||
let f = F;
|
let f = F;
|
||||||
f.to_string(1);
|
f.to_string(1);
|
||||||
|
|
||||||
|
let g = G;
|
||||||
|
g.to_string::<1>();
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
error: implementation of inherent method `to_string(&self) -> String` for type `A`
|
error: implementation of inherent method `to_string(&self) -> String` for type `A`
|
||||||
--> $DIR/inherent_to_string.rs:20:5
|
--> $DIR/inherent_to_string.rs:21:5
|
||||||
|
|
|
|
||||||
LL | / fn to_string(&self) -> String {
|
LL | / fn to_string(&self) -> String {
|
||||||
LL | | "A.to_string()".to_string()
|
LL | | "A.to_string()".to_string()
|
||||||
@ -10,7 +10,7 @@ LL | | }
|
|||||||
= help: implement trait `Display` for type `A` instead
|
= help: implement trait `Display` for type `A` instead
|
||||||
|
|
||||||
error: type `C` implements inherent method `to_string(&self) -> String` which shadows the implementation of `Display`
|
error: type `C` implements inherent method `to_string(&self) -> String` which shadows the implementation of `Display`
|
||||||
--> $DIR/inherent_to_string.rs:44:5
|
--> $DIR/inherent_to_string.rs:45:5
|
||||||
|
|
|
|
||||||
LL | / fn to_string(&self) -> String {
|
LL | / fn to_string(&self) -> String {
|
||||||
LL | | "C.to_string()".to_string()
|
LL | | "C.to_string()".to_string()
|
||||||
|
Loading…
Reference in New Issue
Block a user