blob: d12cc81d09c1af91bade09b23481ff7d5fb8801f [file] [log] [blame] [edit]
//@ run-rustfix
fn main() {
for _ in 0..=255 as u8 {} //~ ERROR range endpoint is out of range
for _ in 0..=(255 as u8) {} //~ ERROR range endpoint is out of range
}