mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
234 B
Rust
20 lines
234 B
Rust
//@ run-pass
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
pub enum Type {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
|
|
pub fn encode(v: Type) -> Type {
|
|
match v {
|
|
Type::A => Type::B,
|
|
_ => v,
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(Type::B, encode(Type::A));
|
|
}
|