blob: 556f0d18f9f22727cbfe95441d02c8bdc9f69764 [file] [log] [blame]
// 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`
}