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 05:57:10 +00:00
use bar::Foo; //~ ERROR unresolved import `bar::Foo` [E0432]
//~^ no `Foo` in `bar`
2016-04-09 01:27:46 +00:00
mod bar {
2016-10-13 08:05:03 +00:00
use Foo;
2016-04-09 01:27:46 +00:00
}
fn main() {}