2013-02-07 11:56:49 -06:00
|
|
|
//@ pp-exact
|
2012-07-10 12:37:05 -05:00
|
|
|
|
|
|
|
fn main() {
|
2015-01-25 15:05:03 -06:00
|
|
|
let x = Some(3);
|
2014-04-15 20:17:48 -05:00
|
|
|
let _y =
|
|
|
|
match x {
|
2014-05-25 05:10:11 -05:00
|
|
|
Some(_) => "some(_)".to_string(),
|
2014-07-27 20:05:07 -05:00
|
|
|
None => "none".to_string(),
|
2014-04-15 20:17:48 -05:00
|
|
|
};
|
2012-07-10 12:37:05 -05:00
|
|
|
}
|