11 lines
249 B
Rust
11 lines
249 B
Rust
// 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`
|
|
}
|