Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
structs
/
struct-fields-missing.rs
blob: 0c7919d0249e9e0eea9dea190f27da7ddbd2bf39 [
file
] [
log
] [
blame
]
struct
BuildData
{
foo
:
isize
,
bar
:
Box
<
isize
>,
}
fn
main
()
{
let
foo
=
BuildData
{
//~ ERROR missing field `bar` in initializer of `BuildData`
foo
:
0
};
}