Sign in
◑
Theme
rust
/
rust
/
c1d608bb7e862c8d8b74ce7cfc042fa98e9d4792
/
.
/
tests
/
ui
/
parser
/
removed-syntax
/
removed-syntax-with-2.rs
blob: 119afdcc75e368bd4b01af8778ad6fd318c08c27 [
file
]
fn
main
()
{
struct
S
{
foo
:
(),
bar
:
(),
}
let
a
=
S
{
foo
:
(),
bar
:
()
};
let
b
=
S
{
foo
:
(),
with a
};
//~^ ERROR expected one of `,`, `:`, or `}`, found `a`
}