This website requires JavaScript.
Explore
Help
Sign in
mathieu
/
os-rust
Watch
1
Star
0
Fork
You've already forked os-rust
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
Actions
9fc6b43126
os-rust
/
tests
/
ui
/
suggestions
/
silenced-binding-typo.rs
6 lines
82 B
Rust
Raw
Normal View
History
Unescape
Escape
[AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives
2024-02-16 20:02:50 +00:00
//@ run-rustfix
Typo suggestion to change bindings with leading underscore When encountering a binding that isn't found but has a typo suggestion for a binding with a leading underscore, suggest changing the binding definition instead of the use place. Fix #60164.
2023-10-19 22:34:45 +00:00
fn
main
(
)
{
let
_x
=
42
;
//~ HELP
let
_y
=
x
;
//~ ERROR
}
Reference in a new issue
Copy permalink