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