rust/tests/ui/issues/issue-38857.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
688 B
Plaintext
Raw Normal View History

error[E0433]: failed to resolve: could not find `imp` in `sys`
--> $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!() };
| ^^^ could not find `imp` in `sys`
2018-07-15 21:11:54 +00:00
error[E0603]: module `sys` is private
--> $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!() };
| ^^^ private module
|
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
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`.