]> git.lizzy.rs Git - rust.git/blob - src/test/ui/estr-subtyping.stderr
810c52a57066bf2a0191fdbc696f2ac974c501d8
[rust.git] / src / test / ui / estr-subtyping.stderr
1 error[E0308]: mismatched types
2   --> $DIR/estr-subtyping.rs:10:15
3    |
4 LL |    wants_uniq(x);
5    |               ^
6    |               |
7    |               expected struct `std::string::String`, found &str
8    |               help: try using a conversion method: `x.to_string()`
9    |
10    = note: expected struct `std::string::String`
11            found reference `&str`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0308`.