2019-02-25 17:56:53 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/block-expression-remove-semicolon.rs:6:18
|
|
|
|
|
|
|
|
|
LL | let x: i32 = {
|
|
|
|
| __________________^
|
2019-03-12 14:06:13 -05:00
|
|
|
LL | |
|
|
|
|
LL | | foo();
|
2019-02-25 17:56:53 -06:00
|
|
|
| | - help: consider removing this semicolon
|
|
|
|
LL | | };
|
2019-11-15 11:37:01 -06:00
|
|
|
| |_____^ expected `i32`, found `()`
|
2019-02-25 17:56:53 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|