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