Closed
Description
For exemple, for the following code:
extern crate libc;
fn main() {
}
The output of rustc is:
bar.rs:1:1: 1:19 warning: use of unstable library feature 'libc'
bar.rs:1 extern crate libc;
^~~~~~~~~~~~~~~~~~
bar.rs:1:1: 1:19 help: add #![feature(libc)] to the crate attributes to silence this warning
bar.rs:1 extern crate libc;
^~~~~~~~~~~~~~~~~~
It should be:
bar.rs:1:1: 1:19 warning: use of unstable library feature 'libc'
bar.rs:1:1: 1:19 help: add #![feature(libc)] to the crate attributes to silence this warning
bar.rs:1 extern crate libc;
^~~~~~~~~~~~~~~~~~
I don't know if there is any help message associated with an error message, but if this the case, the same issue apply.