]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/issue-59819.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / suggestions / issue-59819.stderr
1 error[E0308]: mismatched types
2 --> $DIR/issue-59819.rs:28:18
3 |
4 LL | let y: i32 = x;
5 | --- ^
6 | | |
7 | | expected `i32`, found struct `Foo`
8 | | help: consider dereferencing the type: `*x`
9 | expected due to this
10
11 error[E0308]: mismatched types
12 --> $DIR/issue-59819.rs:30:18
13 |
14 LL | let b: i32 = a;
15 | --- ^
16 | | |
17 | | expected `i32`, found `&{integer}`
18 | | help: consider dereferencing the borrow: `*a`
19 | expected due to this
20
21 error[E0308]: mismatched types
22 --> $DIR/issue-59819.rs:34:21
23 |
24 LL | let g: String = f;
25 | ------ ^
26 | | |
27 | | expected struct `std::string::String`, found struct `Bar`
28 | | help: try using a conversion method: `f.to_string()`
29 | expected due to this
30
31 error: aborting due to 3 previous errors
32
33 For more information about this error, try `rustc --explain E0308`.