blob: a4ea4e25d861e56fe7bdd68a458284e9375089a9 [file] [log] [blame]
// 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
}