2018-11-13 17:52:26 -06:00
|
|
|
error[E0433]: failed to resolve: could not find `imp` in `sys`
|
2020-03-31 20:10:13 -05:00
|
|
|
--> $DIR/issue-38857.rs:2:23
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
|
2018-11-13 17:52:26 -06:00
|
|
|
| ^^^ could not find `imp` in `sys`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error[E0603]: module `sys` is private
|
2020-03-31 20:10:13 -05:00
|
|
|
--> $DIR/issue-38857.rs:2:18
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
|
2020-03-22 17:36:54 -05:00
|
|
|
| ^^^ private module
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
|
|
|
note: the module `sys` is defined here
|
2020-06-11 21:31:49 -05:00
|
|
|
--> $SRC_DIR/std/src/lib.rs:LL:COL
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0433, E0603.
|
2018-07-15 16:11:54 -05:00
|
|
|
For more information about an error, try `rustc --explain E0433`.
|