about summary refs log tree commit diff
path: root/tests/ui/suggestions/issue-62843.stderr
blob: c3c0360b3a9d17833d17e64611d4a99ec5322418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0277]: the trait bound `String: Pattern` is not satisfied
  --> $DIR/issue-62843.rs:4:32
   |
LL |     println!("{:?}", line.find(pattern));
   |                           ---- ^^^^^^^ the trait `Pattern` is not implemented for `String`
   |                           |
   |                           required by a bound introduced by this call
   |
   = note: required for `String` to implement `Pattern`
note: required by a bound in `core::str::<impl str>::find`
  --> $SRC_DIR/core/src/str/mod.rs:LL:COL
help: consider borrowing here
   |
LL |     println!("{:?}", line.find(&pattern));
   |                                +

error: aborting due to 1 previous error

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