File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1+ // FIXME: missing sysroot spans (#53081)
2+ // ignore-i586-unknown-linux-gnu
3+ // ignore-i586-unknown-linux-musl
4+ // ignore-i686-unknown-linux-musl
5+
16fn main ( ) {
27 let a = std:: sys:: imp:: process:: process_common:: StdioPipes { ..panic ! ( ) } ;
38 //~^ ERROR failed to resolve: could not find `imp` in `sys` [E0433]
Original file line number Diff line number Diff line change 11error[E0433]: failed to resolve: could not find `imp` in `sys`
2- --> $DIR/issue-38857.rs:2 :23
2+ --> $DIR/issue-38857.rs:7 :23
33 |
44LL | let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
55 | ^^^ could not find `imp` in `sys`
66
77error[E0603]: module `sys` is private
8- --> $DIR/issue-38857.rs:2 :18
8+ --> $DIR/issue-38857.rs:7 :18
99 |
1010LL | let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
1111 | ^^^ this module is private
Original file line number Diff line number Diff line change 1+ // FIXME: missing sysroot spans (#53081)
2+ // ignore-i586-unknown-linux-gnu
3+ // ignore-i586-unknown-linux-musl
4+ // ignore-i686-unknown-linux-musl
5+
16fn main ( ) {
27 let _ = std:: thread:: thread_info:: current_thread ( ) ;
38 //~^ERROR module `thread_info` is private
Original file line number Diff line number Diff line change 11error[E0603]: module `thread_info` is private
2- --> $DIR/stability-in-private-module.rs:2 :26
2+ --> $DIR/stability-in-private-module.rs:7 :26
33 |
44LL | let _ = std::thread::thread_info::current_thread();
55 | ^^^^^^^^^^^ this module is private
You can’t perform that action at this time.
0 commit comments