报告由于 start 值大于 endInclusive 值而为空的范围。

示例:


  val range = 2..1

The quick-fix changes the .. operator to downTo:


  val range = 2 downTo 1