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