]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-82865.stderr
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / ui / resolve / issue-82865.stderr
1 error[E0433]: failed to resolve: maybe a missing crate `x`?
2   --> $DIR/issue-82865.rs:5:5
3    |
4 LL | use x::y::z;
5    |     ^ maybe a missing crate `x`?
6    |
7    = help: consider adding `extern crate x` to use the `x` crate
8
9 error[E0599]: no function or associated item named `z` found for struct `Box<_, _>` in the current scope
10   --> $DIR/issue-82865.rs:8:10
11    |
12 LL |     Box::z
13    |          ^ function or associated item not found in `Box<_, _>`
14 ...
15 LL |     mac!();
16    |     ------ in this macro invocation
17    |
18    = note: this error originates in the macro `mac` (in Nightly builds, run with -Z macro-backtrace for more info)
19
20 error: aborting due to 2 previous errors
21
22 Some errors have detailed explanations: E0433, E0599.
23 For more information about an error, try `rustc --explain E0433`.