2020-01-08 10:05:31 -06:00
|
|
|
error[E0599]: no method named `boom` found for reference `&Obj` in the current scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-3707.rs:10:14
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | self.boom();
|
2022-09-23 11:09:32 -05:00
|
|
|
| -----^^^^--
|
2018-07-15 16:11:54 -05:00
|
|
|
| | |
|
|
|
|
| | this is an associated function, not a method
|
2022-09-23 11:09:32 -05:00
|
|
|
| help: use associated function syntax instead: `Obj::boom()`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
= note: found the following associated functions; to be used as methods, functions must have a `self` parameter
|
|
|
|
note: the candidate is defined in an impl for the type `Obj`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-3707.rs:6:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | pub fn boom() -> bool {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|