Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
structs
/
struct-fields-dupe.rs
blob: 2fa25a33545dfe21feace9fda7097579cddfad48 [
file
] [
log
] [
blame
]
struct
BuildData
{
foo
:
isize
,
}
fn
main
()
{
let
foo
=
BuildData
{
foo
:
0
,
foo
:
0
//~ ERROR field `foo` specified more than once
};
}