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

16 lines
536 B
Plaintext
Raw Normal View History

error[E0425]: cannot find value `bar` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/typo-suggestion.rs:5:26
2016-09-26 18:05:46 -05:00
|
2018-02-22 18:42:32 -06:00
LL | println!("Hello {}", bar); //~ ERROR cannot find value
| ^^^ not found in this scope
2016-09-26 18:05:46 -05:00
error[E0425]: cannot find value `fob` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/typo-suggestion.rs:8:26
2016-09-26 18:05:46 -05:00
|
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`?
error: aborting due to 2 previous errors
2016-09-26 18:05:46 -05:00
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0425`.