You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/ui/imports/issue-37887.stderr
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,19 @@
1
-
error[E0432]: unresolved import `libc`
1
+
error[E0432]: unresolved import `test`
2
2
--> $DIR/issue-37887.rs:3:9
3
3
|
4
-
LL | use libc::*;
5
-
| ^^^^ maybe a missing crate `libc`?
4
+
LL | use test::*;
5
+
| ^^^^ maybe a missing crate `test`?
6
6
|
7
-
= help: consider adding `extern crate libc` to use the `libc` crate
7
+
= help: consider adding `extern crate test` to use the `test` crate
8
8
9
-
error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead?
9
+
error[E0658]: use of unstable library feature 'test'
10
10
--> $DIR/issue-37887.rs:2:5
11
11
|
12
-
LL | extern crate libc;
12
+
LL | extern crate test;
13
13
| ^^^^^^^^^^^^^^^^^^
14
14
|
15
-
= note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
16
-
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
15
+
= note: see issue #50297 <https://github.com/rust-lang/rust/issues/50297> for more information
16
+
= help: add `#![feature(test)]` to the crate attributes to enable
17
17
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
0 commit comments