summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/issue-109529.fixed
blob: 5ad489073eead94c271652ee85f3d24f21f7934d (plain)
1
2
3
4
5
6
// 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
}