rust/src/test/ui/pattern/pattern-ident-path-generics.rs
2018-12-25 21:08:33 -07:00

6 lines
123 B
Rust

fn main() {
match Some("foo") {
None::<isize> => {} //~ ERROR mismatched types
Some(_) => {}
}
}