summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-62843.stderr
blob: bc1c69406d139c138add6ee92c32d22ec7292567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0277]: expected a `FnMut<(char,)>` closure, found `String`
  --> $DIR/issue-62843.rs:4:32
   |
LL |     println!("{:?}", line.find(pattern));
   |                           ---- ^^^^^^^ expected an implementor of trait `Pattern<'_>`
   |                           |
   |                           required by a bound introduced by this call
   |
   = note: the trait bound `String: Pattern<'_>` is not satisfied
   = note: required because of the requirements on the impl of `Pattern<'_>` for `String`
note: required by a bound in `core::str::<impl str>::find`
  --> $SRC_DIR/core/src/str/mod.rs:LL:COL
   |
LL |     pub fn find<'a, P: Pattern<'a>>(&'a self, pat: P) -> Option<usize> {
   |                        ^^^^^^^^^^^ required by this bound in `core::str::<impl str>::find`
help: consider borrowing here
   |
LL |     println!("{:?}", line.find(&pattern));
   |                                +

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.