mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
13 lines
146 B
Rust
13 lines
146 B
Rust
// run-pass
|
|
pub fn foo(x: i8) -> i32 {
|
|
match x {
|
|
1 => 0,
|
|
_ => 1,
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(foo(0), 1);
|
|
assert_eq!(foo(1), 0);
|
|
}
|