mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
147 B
Rust
13 lines
147 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);
|
|
}
|