30862a64c2
This is required by the check-fast target because each test is slurped up into a submodule.
14 lines
152 B
Rust
14 lines
152 B
Rust
enum Foo {
|
|
IntVal(i32),
|
|
Int64Val(i64)
|
|
}
|
|
|
|
struct Bar {
|
|
i: i32,
|
|
v: Foo
|
|
}
|
|
|
|
static bar: Bar = Bar { i: 0, v: IntVal(0) };
|
|
|
|
pub fn main() {}
|