summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/for-loop-has-unit-body.rs
blob: a9433d7de6e17f679c3e8c39d03e4e71c49854ef (plain)
1
2
3
4
5
fn main() {
    for x in 0..3 {
        x //~ ERROR mismatched types
    }
}