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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
389 B
Plaintext
Raw Permalink Normal View History

error[E0599]: no method named `b` found for reference `&Self` in the current scope
2018-12-25 15:56:47 +00:00
--> $DIR/issue-3563.rs:3:17
2017-06-24 00:43:35 +00:00
|
2018-02-23 00:42:32 +00: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-24 00:43:35 +00:00
error: aborting due to 1 previous error
2017-06-24 00:43:35 +00:00
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0599`.