• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![feature(exclusive_range_pattern)]
2 
main()3 fn main() {
4     match [5..4, 99..105, 43..44] {
5         [..9, 99..100, _] => {},
6         //~^ ERROR mismatched types
7         //~| ERROR mismatched types
8         //~| ERROR mismatched types
9         _ => {},
10     }
11 }
12