]> git.lizzy.rs Git - rust.git/blob - src/test/ui/bad/bad-const-type.stderr
Auto merge of #52972 - RalfJung:from_raw_parts_align, r=alexcrichton
[rust.git] / src / test / ui / bad / bad-const-type.stderr
1 error[E0308]: mismatched types
2   --> $DIR/bad-const-type.rs:11:20
3    |
4 LL | static i: String = 10;
5    |                    ^^
6    |                    |
7    |                    expected struct `std::string::String`, found integral variable
8    |                    help: try using a conversion method: `10.to_string()`
9    |
10    = note: expected type `std::string::String`
11               found type `{integer}`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0308`.