]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/suggest-assoc-fn-call-deref.stderr
Auto merge of #106977 - michaelwoerister:unord_id_collections, r=oli-obk
[rust.git] / tests / ui / suggestions / suggest-assoc-fn-call-deref.stderr
1 error[E0599]: no method named `test` found for struct `Box<Foo<i32>>` in the current scope
2   --> $DIR/suggest-assoc-fn-call-deref.rs:13:7
3    |
4 LL |     x.test();
5    |     --^^^^--
6    |     | |
7    |     | this is an associated function, not a method
8    |     help: use associated function syntax instead: `Foo::<i32>::test()`
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 `Foo<T>`
12   --> $DIR/suggest-assoc-fn-call-deref.rs:8:5
13    |
14 LL |     fn test() -> i32 { 1 }
15    |     ^^^^^^^^^^^^^^^^
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0599`.