2020-01-08 16:05:31 +00:00
|
|
|
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
|
|
|
| ^
|
|
|
|
|
|
2024-02-14 18:23:01 +00:00
|
|
|
help: there is a method `a` with a similar name
|
2024-02-10 03:37:08 +00:00
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - || self.b()
|
|
|
|
LL + || self.a()
|
|
|
|
|
|
2017-06-24 00:43:35 +00:00
|
|
|
|
2023-11-21 15:44:16 +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`.
|