1 // run-pass
2 
3 #![deny(unused_mut)]
4 #![allow(unreachable_code)]
5 
main()6 fn main() {
7     for _ in { return (); 0..3 } {} // ok
8 }
9