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