Sign in
android
/
toolchain
/
rustc
/
5139364148b53d79de1b5e778004d41a6a33a4a2
/
.
/
tests
/
ui
/
structs
/
struct-fields-typo.rs
blob: 0e9b2ae5145d7233f3e44151283d48d0b651dc78 [
file
] [
log
] [
blame
]
struct
BuildData
{
foo
:
isize
,
bar
:
f32
}
fn
main
()
{
let
foo
=
BuildData
{
foo
:
0
,
bar
:
0.5
,
};
let
x
=
foo
.
baa
;
//~ ERROR no field `baa` on type `BuildData`
//~| HELP a field with a similar name exists
//~| SUGGESTION bar
println
!(
"{}"
,
x
);
}