summary refs log tree commit diff
path: root/src/test/ui/for-loop-while/for-loop-has-unit-body.rs
blob: 38c34d2dc2e6f8fbc7802b706aa4267a7418d977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-pass
fn main() {
    // Check that the tail statement in the body unifies with something
    for _ in 0..3 {
        #[allow(deprecated)]
        unsafe { std::mem::uninitialized() }
    }

    // Check that the tail statement in the body can be unit
    for _ in 0..3 {
        ()
    }
}