mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
138 B
Rust
13 lines
138 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
enum Void {}
|
|
|
|
enum Foo {
|
|
A(i32),
|
|
B(Void),
|
|
C(i32)
|
|
}
|
|
|
|
fn main() {
|
|
let _foo = Foo::A(0);
|
|
}
|