summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-104961.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/issue-104961.rs')
-rw-r--r--tests/ui/suggestions/issue-104961.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/suggestions/issue-104961.rs b/tests/ui/suggestions/issue-104961.rs
new file mode 100644
index 000000000..aeb787abb
--- /dev/null
+++ b/tests/ui/suggestions/issue-104961.rs
@@ -0,0 +1,16 @@
+// run-rustfix
+
+fn foo(x: &str) -> bool {
+ x.starts_with("hi".to_string() + " you")
+ //~^ ERROR expected a `FnMut<(char,)>` closure, found `String`
+}
+
+fn foo2(x: &str) -> bool {
+ x.starts_with("hi".to_string())
+ //~^ ERROR expected a `FnMut<(char,)>` closure, found `String`
+}
+
+fn main() {
+ foo("hi you");
+ foo2("hi");
+}