]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/inferred-suffix-in-pattern-range.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / inferred-suffix-in-pattern-range.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12 pub fn main() {
13     let x = 2;
14     let x_message = match x {
15       0 ... 1    => { "not many".to_string() }
16       _          => { "lots".to_string() }
17     };
18     assert_eq!(x_message, "lots".to_string());
19
20     let y = 2;
21     let y_message = match y {
22       0 ... 1    => { "not many".to_string() }
23       _          => { "lots".to_string() }
24     };
25     assert_eq!(y_message, "lots".to_string());
26
27     let z = 1u64;
28     let z_message = match z {
29       0 ... 1    => { "not many".to_string() }
30       _          => { "lots".to_string() }
31     };
32     assert_eq!(z_message, "not many".to_string());
33 }