Files
rust/tests/ui/block-result/issue-3563.stderr

16 lines
389 B
Plaintext
Raw Normal View History

error[E0599]: no method named `b` found for reference `&Self` in the current scope
2018-12-25 08:56:47 -07:00
--> $DIR/issue-3563.rs:3:17
2017-06-23 17:43:35 -07:00
|
2018-02-23 03:42:32 +03:00
LL | || self.b()
2024-02-10 03:37:08 +00:00
| ^
|
help: there is a method `a` with a similar name
2024-02-10 03:37:08 +00:00
|
LL - || self.b()
LL + || self.a()
|
2017-06-23 17:43:35 -07:00
error: aborting due to 1 previous error
2017-06-23 17:43:35 -07:00
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0599`.