]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/emit/test-24876.rs
Rollup merge of #103702 - WaffleLapkin:lift-sized-bounds-from-pointer-methods-where...
[rust.git] / tests / run-make-fulldeps / emit / test-24876.rs
1 // Checks for issue #24876
2
3 fn main() {
4     let mut v = 0;
5     for i in 0..0 {
6         v += i;
7     }
8     println!("{}", v)
9 }