]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/suggest-assoc-fn-call-with-turbofish-through-deref.stderr
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.git] / src / test / ui / suggestions / suggest-assoc-fn-call-with-turbofish-through-deref.stderr
1 error[E0599]: no method named `hello` found for struct `RefMut<'_, HasAssocMethod>` in the current scope
2   --> $DIR/suggest-assoc-fn-call-with-turbofish-through-deref.rs:11:11
3    |
4 LL |     state.hello();
5    |     ------^^^^^
6    |     |     |
7    |     |     this is an associated function, not a method
8    |     help: use associated function syntax instead: `HasAssocMethod::hello`
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 `HasAssocMethod`
12   --> $DIR/suggest-assoc-fn-call-with-turbofish-through-deref.rs:6:5
13    |
14 LL |     fn hello() {}
15    |     ^^^^^^^^^^
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0599`.