2017-01-11 16:18:08 -06:00
|
|
|
error[E0425]: cannot find value `bar` in this scope
|
2016-09-26 18:05:46 -05:00
|
|
|
--> $DIR/typo-suggestion.rs:15:26
|
|
|
|
|
|
|
|
|
15 | println!("Hello {}", bar);
|
2017-01-11 16:18:08 -06:00
|
|
|
| ^^^ not found in this scope
|
2016-09-26 18:05:46 -05:00
|
|
|
|
2017-01-11 16:18:08 -06:00
|
|
|
error[E0425]: cannot find value `fob` in this scope
|
2016-09-26 18:05:46 -05:00
|
|
|
--> $DIR/typo-suggestion.rs:18:26
|
|
|
|
|
|
|
|
|
18 | println!("Hello {}", fob);
|
|
|
|
| ^^^ did you mean `foo`?
|
|
|
|
|
2017-05-22 06:46:05 -05:00
|
|
|
error: aborting due to previous error(s)
|
2016-09-26 18:05:46 -05:00
|
|
|
|