]> git.lizzy.rs Git - rust.git/blob - tests/ui/coherence/coherence_inherent.stderr
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / coherence / coherence_inherent.stderr
1 error[E0599]: no method named `the_fn` found for reference `&TheStruct` in the current scope
2   --> $DIR/coherence_inherent.rs:31:11
3    |
4 LL |         s.the_fn();
5    |           ^^^^^^ method not found in `&TheStruct`
6    |
7    = help: items from traits can only be used if the trait is in scope
8 help: the following trait is implemented but not in scope; perhaps add a `use` for it:
9    |
10 LL |     use Lib::TheTrait;
11    |
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0599`.