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

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

11 lines
249 B
Rust
Raw Normal View History

2016-01-26 03:12:23 -06:00
// This checks that a path that cannot be resolved because of an indeterminate import
// does not trigger an ICE.
mod foo {
pub use self::*; //~ ERROR unresolved
}
fn main() {
foo::f(); //~ ERROR cannot find function `f` in module `foo`
2016-01-26 03:12:23 -06:00
}