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

15 lines
470 B
Plaintext
Raw Normal View History

error[E0425]: cannot find value `bar` in this scope
2016-09-26 18:05:46 -05:00
--> $DIR/typo-suggestion.rs:15:26
|
2017-11-20 06:13:27 -06:00
15 | 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
2016-09-26 18:05:46 -05:00
--> $DIR/typo-suggestion.rs:18:26
|
2017-11-20 06:13:27 -06:00
18 | 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