Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-9725.rs
blob: 360effbd1194704059a13d9602ef9d758b2f1062 [
file
] [
log
] [
blame
] [
edit
]
struct
A
{
foo
:
isize
}
fn
main
()
{
let
A
{
foo
,
foo
}
=
A
{
foo
:
3
};
//~^ ERROR: identifier `foo` is bound more than once in the same pattern
//~^^ ERROR: field `foo` bound multiple times
}