Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
parser
/
removed-syntax
/
removed-syntax-with-2.rs
blob: 451057c66a1277008483768ae886a1e97b63d7c7 [
file
] [
log
] [
blame
]
fn
main
()
{
struct
S
{
foo
:
(),
bar
:
(),
}
let
a
=
S
{
foo
:
(),
bar
:
()
};
let
b
=
S
{
foo
:
(),
with a
};
//~^ ERROR expected one of `,`, `:`, or `}`, found `a`
//~| ERROR missing field `bar` in initializer of `S`
}