about summary refs log tree commit diff
path: root/tests/ui/lint/issue-109529.fixed
blob: d12cc81d09c1af91bade09b23481ff7d5fb8801f (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
}