Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
removed-syntax
/
removed-syntax-field-let-2.rs
blob: 7ff91b476aeb59b5c428a327bc1a49dd2e98c4ca [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
{
let
x
:
i32
,
//~^ ERROR expected identifier, found keyword
let
y
:
i32
,
//~^ ERROR expected identifier, found keyword
}
fn
main
()
{
let
_
=
Foo
{
//~^ ERROR missing fields `x` and `y` in initializer of `Foo`
};
}