blob: afa10b38b91445a3d02761de281f2754c0a4f360 [file] [log] [blame]
fn foo() -> i32 {
0
}
fn main() {
let x: i32 = {
//~^ ERROR mismatched types
foo(); //~ HELP consider removing this semicolon
};
}