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.
|
|
|
|
|
2011-09-28 14:07:33 -05:00
|
|
|
//error-pattern: unreachable
|
|
|
|
//error-pattern: unreachable
|
|
|
|
//error-pattern: unreachable
|
|
|
|
//error-pattern: unreachable
|
|
|
|
//error-pattern: unreachable
|
|
|
|
|
|
|
|
fn main() {
|
2012-08-23 16:44:58 -05:00
|
|
|
match 5u {
|
2012-09-01 20:38:05 -05:00
|
|
|
1u .. 10u => { }
|
|
|
|
5u .. 6u => { }
|
2012-08-23 16:44:58 -05:00
|
|
|
_ => {}
|
2011-09-28 14:07:33 -05:00
|
|
|
};
|
|
|
|
|
2012-08-23 16:44:58 -05:00
|
|
|
match 5u {
|
2012-09-01 20:38:05 -05:00
|
|
|
3u .. 6u => { }
|
|
|
|
4u .. 6u => { }
|
2012-08-23 16:44:58 -05:00
|
|
|
_ => {}
|
2011-09-28 14:07:33 -05:00
|
|
|
};
|
|
|
|
|
2012-08-23 16:44:58 -05:00
|
|
|
match 5u {
|
2012-09-01 20:38:05 -05:00
|
|
|
4u .. 6u => { }
|
|
|
|
4u .. 6u => { }
|
2012-08-23 16:44:58 -05:00
|
|
|
_ => {}
|
2011-09-28 14:07:33 -05:00
|
|
|
};
|
|
|
|
|
2012-08-23 16:44:58 -05:00
|
|
|
match 'c' {
|
2012-09-01 20:38:05 -05:00
|
|
|
'A' .. 'z' => {}
|
|
|
|
'a' .. 'z' => {}
|
2012-08-23 16:44:58 -05:00
|
|
|
_ => {}
|
2011-09-28 14:07:33 -05:00
|
|
|
};
|
|
|
|
|
2012-08-23 16:44:58 -05:00
|
|
|
match 1.0 {
|
2012-09-01 20:38:05 -05:00
|
|
|
0.01 .. 6.5 => {}
|
2012-08-03 21:59:04 -05:00
|
|
|
0.02 => {}
|
2012-08-23 16:44:58 -05:00
|
|
|
_ => {}
|
2011-09-28 14:07:33 -05:00
|
|
|
};
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|