rust/tests/ui/rfcs/rfc-2497-if-let-chains/ast-validate-guards.rs
2025-04-25 17:02:59 +05:00

24 lines
504 B
Rust

//@ edition: 2024
fn let_or_guard(x: Result<Option<i32>, ()>) {
match x {
Ok(opt) if let Some(4) = opt || false => {}
//~^ ERROR `||` operators are not supported in let chain conditions
_ => {}
}
}
fn hiding_unsafe_mod(x: Result<Option<i32>, ()>) {
match x {
Ok(opt)
if {
unsafe mod a {};
//~^ ERROR module cannot be declared unsafe
false
} => {}
_ => {}
}
}
fn main() {}