Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
imports
/
issue-31212.rs
blob: fe69c5af2706fd85f7cbba768687cc2e2957f5de [
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
();
// cannot find function `f` in module `foo`, but silenced
}