Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
span
/
typo-suggestion.rs
blob: e9d7bc65ef5b55c4ce4ab74c269bc7bfd4bf8027 [
file
] [
log
] [
blame
]
fn
main
()
{
let
foo
=
1
;
// `foo` shouldn't be suggested, it is too dissimilar from `bar`.
println
!(
"Hello {}"
,
bar
);
//~ ERROR cannot find value
// But this is close enough.
println
!(
"Hello {}"
,
fob
);
//~ ERROR cannot find value
}