summary refs log tree commit diff
path: root/src/test/ui/or-patterns/feature-gate-or_patterns-leading-let.rs
blob: a4ea4e25d861e56fe7bdd68a458284e9375089a9 (plain)
1
2
3
4
5
6
7
8
// Test feature gating for a sole leading `|` in `let`.

fn main() {}

#[cfg(FALSE)]
fn gated_leading_vert_in_let() {
    let | A; //~ ERROR or-patterns syntax is experimental
}