mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
23 lines
571 B
Rust
23 lines
571 B
Rust
//@ run-rustfix
|
|
|
|
|
|
|
|
fn main() {
|
|
let Some(1) = { Some(1) } else {
|
|
//~^ ERROR right curly brace `}` before `else` in a `let...else` statement not allowed
|
|
return;
|
|
};
|
|
let 2 = 1 + match 1 { n => n } else {
|
|
//~^ ERROR right curly brace `}` before `else` in a `let...else` statement not allowed
|
|
return;
|
|
};
|
|
let Some(1) = unsafe { unsafe_fn() } else {
|
|
//~^ ERROR right curly brace `}` before `else` in a `let...else` statement not allowed
|
|
return;
|
|
};
|
|
}
|
|
|
|
unsafe fn unsafe_fn<T>() -> T {
|
|
unimplemented!();
|
|
}
|