aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/let_alt.rs
blob: ff16e6428ff1711ca5df202e78a317fc584f0ce3 (plain)
1
2
3
4
5
fn main() {
    let _a | _a = 12;
    // { dg-error "top level or-patterns are not allowed for .let. bindings" "" { target *-*-* } .-1 }
    let (_b | _b) = 12;
}