Sign in
rust
/
rust
/
3b917841b0cfefff70368f3feb7abc8f896d9bd1
/
.
/
tests
/
ui
/
range
/
misleading-field-access-hint.rs
blob: 252f1a4833c773371ca3b16f984a65ff03f7f795 [
file
]
// Check if rustc still displays the misleading hint to write `.` instead of `..`
fn
main
()
{
let
width
=
10
;
// ...
for
_ in
0.
.
w
{
//~^ ERROR cannot find value `w`
}
}