summaryrefslogtreecommitdiffstats
path: root/tests/ui/binding/pattern-bound-var-in-for-each.rs
blob: 3f725cddc5b33632622b5b6bf992aece1b932749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// run-pass
// Tests that codegen_path checks whether a
// pattern-bound var is an upvar (when codegenning
// the for-each body)


fn foo(src: usize) {

    match Some(src) {
      Some(src_id) => {
        for _i in 0_usize..10_usize {
            let yyy = src_id;
            assert_eq!(yyy, 0_usize);
        }
      }
      _ => { }
    }
}

pub fn main() { foo(0_usize); }