]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-37887.rs
Rollup merge of #106323 - starkat99:stabilize-f16c_target_feature, r=petrochenkov
[rust.git] / tests / ui / imports / issue-37887.rs
1 fn main() {
2     extern crate libc; //~ ERROR use of unstable
3     use libc::*; //~ ERROR unresolved import
4 }