mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
23 lines
576 B
Rust
23 lines
576 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!();
|
|
}
|