]> git.lizzy.rs Git - rust.git/commitdiff
Add note suggesting to borrow a String argument to find
authorEsteban Küber <esteban@kuber.com.ar>
Thu, 25 Jul 2019 17:11:03 +0000 (10:11 -0700)
committerEsteban Küber <esteban@kuber.com.ar>
Thu, 25 Jul 2019 17:11:03 +0000 (10:11 -0700)
src/libcore/ops/function.rs
src/test/ui/suggestions/issue-62843.rs [new file with mode: 0644]
src/test/ui/suggestions/issue-62843.stderr [new file with mode: 0644]

index c69f5fd989696d5d1d3f50b15ec9a1aed8b36163..b9552eaa1a0e5678c8b66aa6e2af55508416ea9b 100644 (file)
@@ -137,6 +137,10 @@ pub trait Fn<Args> : FnMut<Args> {
 #[rustc_paren_sugar]
 #[rustc_on_unimplemented(
     on(Args="()", note="wrap the `{Self}` in a closure with no arguments: `|| {{ /* code */ }}"),
+    on(
+        all(Args="(char,)", _Self="std::string::String"),
+        note="borrowing the `{Self}` might fix the problem"
+    ),
     message="expected a `{FnMut}<{Args}>` closure, found `{Self}`",
     label="expected an `FnMut<{Args}>` closure, found `{Self}`",
 )]
diff --git a/src/test/ui/suggestions/issue-62843.rs b/src/test/ui/suggestions/issue-62843.rs
new file mode 100644 (file)
index 0000000..d96b12f
--- /dev/null
@@ -0,0 +1,5 @@
+fn main() {
+    let line = String::from("abc");
+    let pattern = String::from("bc");
+    println!("{:?}", line.find(pattern)); //~ ERROR E0277
+}
diff --git a/src/test/ui/suggestions/issue-62843.stderr b/src/test/ui/suggestions/issue-62843.stderr
new file mode 100644 (file)
index 0000000..cc27b5b
--- /dev/null
@@ -0,0 +1,13 @@
+error[E0277]: expected a `std::ops::FnMut<(char,)>` closure, found `std::string::String`
+  --> $DIR/issue-62843.rs:4:27
+   |
+LL |     println!("{:?}", line.find(pattern));
+   |                           ^^^^ expected an `FnMut<(char,)>` closure, found `std::string::String`
+   |
+   = help: the trait `std::ops::FnMut<(char,)>` is not implemented for `std::string::String`
+   = note: borrowing the `std::string::String` might fix the problem
+   = note: required because of the requirements on the impl of `std::str::pattern::Pattern<'_>` for `std::string::String`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.