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