]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-37887.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-37887.stderr
1 error[E0432]: unresolved import `libc`
2   --> $DIR/issue-37887.rs:13:9
3    |
4 LL |     use libc::*; //~ ERROR unresolved import
5    |         ^^^^ Maybe a missing `extern crate libc;`?
6
7 error[E0658]: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783)
8   --> $DIR/issue-37887.rs:12:5
9    |
10 LL |     extern crate libc; //~ ERROR use of unstable
11    |     ^^^^^^^^^^^^^^^^^^
12    |
13    = help: add #![feature(libc)] to the crate attributes to enable
14
15 error: aborting due to 2 previous errors
16
17 Some errors occurred: E0432, E0658.
18 For more information about an error, try `rustc --explain E0432`.