Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
error-codes
/
E0560.rs
blob: 1d60f8948ab15b42a20a2182e7196db2ab8b3d8f [
file
]
struct
Simba
{
mother
:
u32
,
}
fn
main
()
{
let
s
=
Simba
{
mother
:
1
,
father
:
0
};
//~^ ERROR E0560
}