rust/tests/ui/pattern/pattern-ident-path-generics.rs

7 lines
123 B
Rust

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