Continued from #32395 Apparently #32423 was not a complete fix. https://doc.rust-lang.org/nightly/std/ops/enum.RangeInclusive.html ``` rust pub enum RangeInclusive<Idx> { pub Empty { at: Idx, }, pub NonEmpty { start: Idx, end: Idx, }, } ```