rust/src/test/ui/span/typo-suggestion.stderr

15 lines
374 B
Plaintext
Raw Normal View History

2016-09-26 18:05:46 -05:00
error[E0425]: unresolved name `bar`
--> $DIR/typo-suggestion.rs:15:26
|
15 | println!("Hello {}", bar);
| ^^^ unresolved name
error[E0425]: unresolved name `fob`
--> $DIR/typo-suggestion.rs:18:26
|
18 | println!("Hello {}", fob);
| ^^^ did you mean `foo`?
error: aborting due to 2 previous errors