mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
18 lines
178 B
Rust
18 lines
178 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
#[derive(Hash)]
|
|
enum Foo {
|
|
Bar(isize, char),
|
|
Baz(char, isize)
|
|
}
|
|
|
|
#[derive(Hash)]
|
|
enum A {
|
|
B,
|
|
C,
|
|
D,
|
|
E
|
|
}
|
|
|
|
pub fn main(){}
|