Sign in
fuchsia
/
third_party
/
rust
/
0.8
/
.
/
src
/
test
/
run-pass
/
const-struct-offsets.rs
blob: 2bb0516cad449ce63aedaadc606bd33e813eadfc [
file
]
enum
Foo
{
IntVal
(
i32
),
Int64Val
(
i64
)
}
struct
Bar
{
i
:
i32
,
v
:
Foo
}
static
bar
:
Bar
=
Bar
{
i
:
0
,
v
:
IntVal
(
0
)
};
pub
fn
main
()
{}