mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
287 B
Rust
12 lines
287 B
Rust
// check-pass
|
|
|
|
fn main() {
|
|
let x = 1 else { return }; //~ WARN irrefutable `let...else` pattern
|
|
|
|
// Multiline else blocks should not get printed
|
|
let x = 1 else { //~ WARN irrefutable `let...else` pattern
|
|
eprintln!("problem case encountered");
|
|
return
|
|
};
|
|
}
|