The span assigned to the _expression_ `10` in ``` rust match x { 10 => 20, _ => 25, } ``` is `10 =>`, where one would expect it to be `10`. The _pattern_ `10` is correctly assigned the span `10`.