Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
structs
/
struct-fields-hints.rs
blob: 08df0930e4d13cdbdcd18874f1471459a573f5ad [
file
]
struct
A
{
foo
:
i32
,
car
:
i32
,
barr
:
i32
}
fn
main
()
{
let
a
=
A
{
foo
:
5
,
bar
:
42
,
//~^ ERROR struct `A` has no field named `bar`
};
}