mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
276 B
Rust
19 lines
276 B
Rust
// Regression test for issue #89485.
|
|
|
|
// run-pass
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
pub enum Type {
|
|
A = 1,
|
|
B = 2,
|
|
}
|
|
pub fn encode(v: Type) -> Type {
|
|
match v {
|
|
Type::A => Type::B,
|
|
_ => v,
|
|
}
|
|
}
|
|
fn main() {
|
|
assert_eq!(Type::B, encode(Type::A));
|
|
}
|