]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-38857.stderr
Merge commit '6ed6f1e6a1a8f414ba7e6d9b8222e7e5a1686e42' into clippyup
[rust.git] / src / test / ui / issues / issue-38857.stderr
1 error[E0433]: failed to resolve: could not find `imp` in `sys`
2   --> $DIR/issue-38857.rs:2:23
3    |
4 LL |     let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
5    |                       ^^^ could not find `imp` in `sys`
6
7 error[E0603]: module `sys` is private
8   --> $DIR/issue-38857.rs:2:18
9    |
10 LL |     let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
11    |                  ^^^ private module
12    |
13 note: the module `sys` is defined here
14   --> $SRC_DIR/std/src/lib.rs:LL:COL
15    |
16 LL | mod sys;
17    | ^^^^^^^^
18
19 error: aborting due to 2 previous errors
20
21 Some errors have detailed explanations: E0433, E0603.
22 For more information about an error, try `rustc --explain E0433`.