Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
removed-syntax
/
removed-syntax-with-1.rs
blob: 2c1e152dcee750ceb10b086d0428453405c048e1 [
file
] [
log
] [
blame
] [
edit
]
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`
}