mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
14 lines
174 B
Rust
14 lines
174 B
Rust
//@ run-pass
|
|
|
|
fn foo<'r>(s: &'r usize) -> bool {
|
|
match s {
|
|
&3 => true,
|
|
_ => false
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
assert!(foo(&3));
|
|
assert!(!foo(&4));
|
|
}
|