]> git.lizzy.rs Git - rust.git/blob - src/test/ui/underscore-imports/shadow.stderr
Auto merge of #97497 - c410-f3r:z-errors, r=petrochenkov
[rust.git] / src / test / ui / underscore-imports / shadow.stderr
1 error[E0599]: no method named `deref` found for reference `&()` in the current scope
2   --> $DIR/shadow.rs:19:11
3    |
4 LL |         x.deref();
5    |           ^^^^^ method not found in `&()`
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 std::ops::Deref;
11    |
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0599`.