]> git.lizzy.rs Git - rust.git/blob - src/test/ui/integral-variable-unification-error.stderr
Rollup merge of #93112 - pietroalbini:pa-cve-2022-21658-nightly, r=pietroalbini
[rust.git] / src / test / ui / integral-variable-unification-error.stderr
1 error[E0308]: mismatched types
2   --> $DIR/integral-variable-unification-error.rs:5:9
3    |
4 LL |     let mut x
5    |         ----- expected due to the type of this binding
6 LL |         =
7 LL |         2;
8    |         - expected due to this value
9 LL |     x = 5.0;
10    |         ^^^ expected integer, found floating-point number
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.