Sign in
fuchsia
/
third_party
/
rust
/
97d936423c914c4e3402bfecfd6943e1edf23815
/
.
/
src
/
test
/
ui
/
consts
/
const-struct-offsets.rs
blob: 26a008320797eab77ea0ef32e6bd6fec246801e0 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
// pretty-expanded FIXME #23616
#![
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
()
{}