]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/typo-suggestion.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / span / typo-suggestion.stderr
1 error[E0425]: cannot find value `bar` in this scope
2 --> $DIR/typo-suggestion.rs:5:26
3 |
4 LL | println!("Hello {}", bar);
5 | ^^^ not found in this scope
6
7 error[E0425]: cannot find value `fob` in this scope
8 --> $DIR/typo-suggestion.rs:8:26
9 |
10 LL | println!("Hello {}", fob);
11 | ^^^ help: a local variable with a similar name exists: `foo`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0425`.