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