]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-3707.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-3707.stderr
CommitLineData
dfeec247 1error[E0599]: no method named `boom` found for reference `&Obj` in the current scope
0731742a 2 --> $DIR/issue-3707.rs:10:14
8faf50e0 3 |
532ac7d7 4LL | self.boom();
8faf50e0
XL
5 | -----^^^^
6 | | |
7 | | this is an associated function, not a method
e74abb32 8 | help: use associated function syntax instead: `Obj::boom`
8faf50e0
XL
9 |
10 = note: found the following associated functions; to be used as methods, functions must have a `self` parameter
11note: the candidate is defined in an impl for the type `Obj`
0731742a 12 --> $DIR/issue-3707.rs:6:5
8faf50e0
XL
13 |
14LL | pub fn boom() -> bool {
15 | ^^^^^^^^^^^^^^^^^^^^^
16
17error: aborting due to previous error
18
19For more information about this error, try `rustc --explain E0599`.