2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-04-14 10:30:31 -05:00
|
|
|
#![allow(dead_assignment)]
|
|
|
|
#![allow(unused_variable)]
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2012-01-19 20:31:08 -06:00
|
|
|
enum thing { a, b, c, }
|
2011-04-19 18:52:59 -05:00
|
|
|
|
2013-11-19 18:34:19 -06:00
|
|
|
fn foo(it: |int|) { it(10); }
|
2011-04-19 18:52:59 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-03-22 10:39:41 -05:00
|
|
|
let mut x = true;
|
2012-08-06 14:34:08 -05:00
|
|
|
match a {
|
2012-08-03 21:59:04 -05:00
|
|
|
a => { x = true; foo(|_i| { } ) }
|
|
|
|
b => { x = false; }
|
|
|
|
c => { x = false; }
|
2011-04-19 18:52:59 -05:00
|
|
|
}
|
2011-08-15 23:54:52 -05:00
|
|
|
}
|