File tree 4 files changed +13
-3
lines changed
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
+
1
6
fn main() {
2
7
let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
3
8
//~^ ERROR failed to resolve: could not find `imp` in `sys` [E0433]
Original file line number Diff line number Diff line change 1
1
error[E0433]: failed to resolve: could not find `imp` in `sys`
2
- --> $DIR/issue-38857.rs:2 :23
2
+ --> $DIR/issue-38857.rs:7 :23
3
3
|
4
4
LL | let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
5
5
| ^^^ could not find `imp` in `sys`
6
6
7
7
error[E0603]: module `sys` is private
8
- --> $DIR/issue-38857.rs:2 :18
8
+ --> $DIR/issue-38857.rs:7 :18
9
9
|
10
10
LL | let a = std::sys::imp::process::process_common::StdioPipes { ..panic!() };
11
11
| ^^^ 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
+
1
6
fn main() {
2
7
let _ = std::thread::thread_info::current_thread();
3
8
//~^ERROR module `thread_info` is private
Original file line number Diff line number Diff line change 1
1
error[E0603]: module `thread_info` is private
2
- --> $DIR/stability-in-private-module.rs:2 :26
2
+ --> $DIR/stability-in-private-module.rs:7 :26
3
3
|
4
4
LL | let _ = std::thread::thread_info::current_thread();
5
5
| ^^^^^^^^^^^ this module is private
You can’t perform that action at this time.
0 commit comments