Reports ranges that are empty because the start value is greater than the endInclusive value.

Example:


  val range = 2..1

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


  val range = 2 downTo 1