2018-11-14 02:52:26 +03:00
|
|
|
error[E0433]: failed to resolve: could not find `imp` in `sys`
|
2020-01-16 22:19:55 +03:00
|
|
|
--> $DIR/issue-38857.rs:7: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-01-16 22:19:55 +03:00
|
|
|
--> $DIR/issue-38857.rs:7: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
|
|
|
|
--> $SRC_DIR/libstd/lib.rs:LL:COL
|
|
|
|
|
|
|
|
|
LL | mod sys;
|
|
|
|
| ^^^^^^^^
|
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`.
|