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