summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binding/match-phi.rs
blob: 92a3f6e0f7f60565bb25cf47202a6d0a9bb1be97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// run-pass
#![allow(dead_code)]
#![allow(unused_assignments)]
// pretty-expanded FIXME #23616
#![allow(non_camel_case_types)]
#![allow(unused_variables)]

enum thing { a, b, c, }

fn foo<F>(it: F) where F: FnOnce(isize) { it(10); }

pub fn main() {
    let mut x = true;
    match thing::a {
      thing::a => { x = true; foo(|_i| { } ) }
      thing::b => { x = false; }
      thing::c => { x = false; }
    }
}