1 2 3 4 5 6 7 8 9 10
// compile-flags: -Z parse-only fn matcher(x: Option<isize>) { match x { ref Some(i) => {} //~ ERROR expected identifier, found enum pattern None => {} } } fn main() {}