Update UI test checking suggestion message to rename type starting with underscore

This commit is contained in:
Guillaume Gomez 2024-02-29 12:07:35 +01:00
parent 3770cf7abf
commit 451fd98153

View File

@ -4,7 +4,7 @@ error[E0425]: cannot find value `x` in this scope
LL | let _y = x;
| ^
|
help: a local variable with a similar name exists, consider changing it
help: a local variable with a similar name exists, consider renaming `_x` into `x`
|
LL | let x = 42;
| ~