mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
20 lines
233 B
Rust
20 lines
233 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));
|
|
}
|