mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
234 B
Rust
10 lines
234 B
Rust
// run-pass
|
|
fn main () {
|
|
let x = 4;
|
|
match x {
|
|
ref r if *r < 0 => println!("got negative num {} < 0", r),
|
|
e @ 1 ..= 100 => println!("got number within range [1,100] {}", e),
|
|
_ => println!("no"),
|
|
}
|
|
}
|