]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-3707.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-3707.stderr
1 error[E0599]: no method named `boom` found for type `&Obj` in the current scope
2   --> $DIR/issue-3707.rs:20:14
3    |
4 LL |         self.boom(); //~ ERROR no method named `boom` found for type `&Obj` in the current scope
5    |         -----^^^^
6    |         |    |
7    |         |    this is an associated function, not a method
8    |         help: use associated function syntax instead: `&Obj::boom`
9    |
10    = note: found the following associated functions; to be used as methods, functions must have a `self` parameter
11 note: the candidate is defined in an impl for the type `Obj`
12   --> $DIR/issue-3707.rs:16:5
13    |
14 LL |     pub fn boom() -> bool {
15    |     ^^^^^^^^^^^^^^^^^^^^^
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0599`.