rust/tests/ui/imports/issue-36881.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
139 B
Rust
Raw Normal View History

// aux-build:issue-36881-aux.rs
2016-10-01 07:38:47 +00:00
fn main() {
extern crate issue_36881_aux;
use issue_36881_aux::Foo; //~ ERROR unresolved import
2016-10-01 07:38:47 +00:00
}