summary refs log tree commit diff
path: root/tests/ui/span/suggestion-raw-68962.stderr
blob: 2e25f5cbdf58d8ddc5199f7ef102836085dde41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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`.