]> git.proxmox.com Git - rustc.git/blob - src/test/ui/bad/bad-const-type.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / bad / bad-const-type.stderr
1 error[E0308]: mismatched types
2 --> $DIR/bad-const-type.rs:1:20
3 |
4 LL | static i: String = 10;
5 | ^^
6 | |
7 | expected struct `String`, found integer
8 | help: try using a conversion method: `10.to_string()`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.