rust/tests/ui/suggestions/match-needing-semi.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
288 B
Rust
Raw Normal View History

2019-09-28 01:35:34 +00:00
// check-only
fn main() {
match 3 {
4 => 1,
3 => {
foo() //~ ERROR mismatched types
}
_ => 2
}
match 3 { //~ ERROR mismatched types
4 => 1,
3 => 2,
_ => 2
}
let _ = ();
}
fn foo() -> i32 {
42
}