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