]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pattern/pattern-ident-path-generics.rs
Remove licenses
[rust.git] / src / test / ui / pattern / pattern-ident-path-generics.rs
1 fn main() {
2     match Some("foo") {
3         None::<isize> => {}   //~ ERROR mismatched types
4         Some(_) => {}
5     }
6 }