mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 02:31:20 +00:00
18 lines
226 B
Rust
18 lines
226 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
enum Foo {
|
|
IntVal(i32),
|
|
Int64Val(i64)
|
|
}
|
|
|
|
struct Bar {
|
|
i: i32,
|
|
v: Foo
|
|
}
|
|
|
|
static bar: Bar = Bar { i: 0, v: Foo::IntVal(0) };
|
|
|
|
pub fn main() {}
|