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

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

8 lines
137 B
Rust
Raw Normal View History

2016-08-22 00:57:10 -05:00
use bar::Foo; //~ ERROR unresolved import `bar::Foo` [E0432]
//~^ no `Foo` in `bar`
2016-04-08 20:27:46 -05:00
mod bar {
2016-10-13 03:05:03 -05:00
use Foo;
2016-04-08 20:27:46 -05:00
}
fn main() {}