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