``` rust fn main() { match 'a' { 'a' => {} 'b' => {} 'a'...'b' => {} _ => {} } } ``` Currently compiles, but the `'a'...'b'` pattern is clearly unreachable.