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
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | println!("Hello {}", bar); //~ ERROR cannot find value
|
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
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | println!("Hello {}", fob); //~ ERROR cannot find value
|
2016-09-26 18:05:46 -05:00
|
|
|
| ^^^ did you mean `foo`?
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2016-09-26 18:05:46 -05:00
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0425"
|