summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/issue-37887.stderr
blob: 75185cad3b764885eb3bb0881f7408b8a853f108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0432]: unresolved import `libc`
  --> $DIR/issue-37887.rs:3:9
   |
LL |     use libc::*;
   |         ^^^^ maybe a missing crate `libc`?
   |
   = help: consider adding `extern crate libc` to use the `libc` crate

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?
  --> $DIR/issue-37887.rs:2:5
   |
LL |     extern crate libc;
   |     ^^^^^^^^^^^^^^^^^^
   |
   = note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
   = help: add `#![feature(rustc_private)]` to the crate attributes to enable

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0432, E0658.
For more information about an error, try `rustc --explain E0432`.