Auto merge of #36395 - durka:rangeinclusive-no-esi, r=alexcrichton

remove ExactSizeIterator from RangeInclusive<{u,i}{32,size}>

Fixes #36386.

This is a [breaking-change] for nightly users of `#![feature(inclusive_range_syntax)]` and/or `#![feature(inclusive_range)]`.
This commit is contained in:
bors 2016-09-28 18:31:07 -07:00 committed by GitHub
commit eee2d04d87
2 changed files with 10 additions and 3 deletions

View file

@ -75,7 +75,7 @@ pub fn main() {
// test the size hints and emptying
let mut long = 0...255u8;
let mut short = 42...42;
let mut short = 42...42u8;
assert_eq!(long.size_hint(), (256, Some(256)));
assert_eq!(short.size_hint(), (1, Some(1)));
long.next();