]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/issue-102354.stderr
Rollup merge of #107595 - michaelwoerister:retry_proc_macro_loading, r=petrochenkov
[rust.git] / tests / ui / suggestions / issue-102354.stderr
1 error[E0599]: no method named `func` found for type `i32` in the current scope
2   --> $DIR/issue-102354.rs:9:7
3    |
4 LL |     x.func();
5    |     --^^^^--
6    |     | |
7    |     | this is an associated function, not a method
8    |     help: use associated function syntax instead: `i32::func()`
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 the trait `Trait`
12   --> $DIR/issue-102354.rs:2:5
13    |
14 LL |     fn func() {}
15    |     ^^^^^^^^^
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0599`.