mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
556 B
Text
18 lines
556 B
Text
error[E0425]: cannot find value `fina` in this scope
|
|
--> $DIR/suggestion-raw-68962.rs:7:5
|
|
|
|
|
LL | fina;
|
|
| ^^^^ help: a local variable with a similar name exists: `r#final`
|
|
|
|
error[E0425]: cannot find function `f` in this scope
|
|
--> $DIR/suggestion-raw-68962.rs:10:5
|
|
|
|
|
LL | fn r#fn() {}
|
|
| --------- similarly named function `r#fn` defined here
|
|
...
|
|
LL | f();
|
|
| ^ help: a function with a similar name exists: `r#fn`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|