blob: 036a6095965bdd0c6689284b0db25d832d60d375 [file] [log] [blame]
#![crate_type="lib"]
pub fn example(x: Option<usize>) {
match x {
Some(0 | 1 | 2) => {}
//~^ ERROR: or-patterns syntax is experimental
_ => {}
}
}