Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-rustfix
fn main() {
for _ in 0..256 as u8 {} //~ ERROR range endpoint is out of range
for _ in 0..(256 as u8) {} //~ ERROR range endpoint is out of range
}