Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
structs
/
struct-fields-shorthand-unresolved.rs
blob: caad149160c89271dc105460ae2b88ab11702b08 [
file
]
struct
Foo
{
x
:
i32
,
y
:
i32
}
fn
main
()
{
let
x
=
0
;
let
foo
=
Foo
{
x
,
y
//~ ERROR cannot find value `y` in this scope
};
}