]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/into-str.stderr
Rollup merge of #93613 - crlf0710:rename_to_async_iter, r=yaahc
[rust.git] / src / test / ui / suggestions / into-str.stderr
1 error[E0277]: the trait bound `&str: From<String>` is not satisfied
2   --> $DIR/into-str.rs:4:9
3    |
4 LL |     foo(String::new());
5    |     --- ^^^^^^^^^^^^^ the trait `From<String>` is not implemented for `&str`
6    |     |
7    |     required by a bound introduced by this call
8    |
9    = note: to coerce a `String` into a `&str`, use `&*` as a prefix
10    = help: the following implementations were found:
11              <String as From<&String>>
12              <String as From<&mut str>>
13              <String as From<&str>>
14              <String as From<Box<str>>>
15            and 2 others
16    = note: required because of the requirements on the impl of `Into<&str>` for `String`
17 note: required by a bound in `foo`
18   --> $DIR/into-str.rs:1:31
19    |
20 LL | fn foo<'a, T>(_t: T) where T: Into<&'a str> {}
21    |                               ^^^^^^^^^^^^^ required by this bound in `foo`
22
23 error: aborting due to previous error
24
25 For more information about this error, try `rustc --explain E0277`.