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