about summary refs log tree commit diff
path: root/tests/ui/imports/issue-37887.rs
blob: 919f46d34c6d90fedddcae8aa74f060ec11f7d7f (plain)
1
2
3
4
fn main() {
    extern crate test; //~ ERROR use of unstable
    use test::*; //~ ERROR unresolved import
}