Update ui tests for leading-underscore suggestion

This commit is contained in:
Lucas Scharenbroch 2024-05-30 21:39:41 -05:00
parent 08fe940f0a
commit 9af96745d6
2 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@ LL | macro_rules! _a {
LL | format_args!(a!());
| ^
|
help: a macro with a similar name exists, consider renaming `_a` into `a`
help: the leading underscore in `_a` marks it as unused, consider renaming it to `a`
|
LL | macro_rules! a {
| ~
@ -21,7 +21,7 @@ LL | macro_rules! _a {
LL | env!(a!());
| ^
|
help: a macro with a similar name exists, consider renaming `_a` into `a`
help: the leading underscore in `_a` marks it as unused, consider renaming it to `a`
|
LL | macro_rules! a {
| ~

View File

@ -1,10 +1,12 @@
error[E0425]: cannot find value `x` in this scope
--> $DIR/silenced-binding-typo.rs:4:14
|
LL | let _x = 42;
| -- `_x` defined here
LL | let _y = x;
| ^
|
help: a local variable with a similar name exists, consider renaming `_x` into `x`
help: the leading underscore in `_x` marks it as unused, consider renaming it to `x`
|
LL | let x = 42;
| ~