mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
22 lines
288 B
Rust
22 lines
288 B
Rust
// 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
|
|
}
|