]> git.lizzy.rs Git - rust.git/blob - tests/ui/integral-variable-unification-error.stderr
Rollup merge of #107740 - oli-obk:lock_tcx, r=petrochenkov
[rust.git] / tests / 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`.