about summary refs log tree commit diff
path: root/tests/ui/imports/issue-36881.rs
blob: 4aff642ea958485b9ea1330dcfb57b481f723b25 (plain)
1
2
3
4
5
6
//@ aux-build:issue-36881-aux.rs

fn main() {
    extern crate issue_36881_aux;
    use issue_36881_aux::Foo; //~ ERROR unresolved import
}