summary refs log tree commit diff
path: root/tests/ui/mut/no-mut-lint-for-desugared-mut.rs
blob: bd570a74e0e35a230d0c395a342a5114ffd71962 (plain)
1
2
3
4
5
6
7
8
//@ run-pass

#![deny(unused_mut)]
#![allow(unreachable_code)]

fn main() {
    for _ in { return (); 0..3 } {} // ok
}