Skip to content

Commit

Permalink
Rollup merge of rust-lang#32849 - jseyfried:import_resolution_diagnos…
Browse files Browse the repository at this point in the history
…tics, r=eddyb

resolve: import resolution diagnostics

This improves the diagnostics for failing import resolutions (fixes rust-lang#32833).
r? @eddyb
  • Loading branch information
steveklabnik committed Apr 11, 2016
2 parents 9989a95 + 44ddaa2 commit c9c8509
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
10 changes: 7 additions & 3 deletions src/librustc_resolve/resolve_imports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,7 @@ impl<'a, 'b:'a, 'tcx:'b> ImportResolver<'a, 'b, 'tcx> {
(&Failed(_), &Failed(_)) => {
let resolutions = target_module.resolutions.borrow();
let names = resolutions.iter().filter_map(|(&(ref name, _), resolution)| {
if *name == source { return None; } // Never suggest the same name
match *resolution.borrow() {
NameResolution { binding: Some(_), .. } => Some(name),
NameResolution { single_imports: SingleImports::None, .. } => None,
Expand All @@ -549,9 +550,12 @@ impl<'a, 'b:'a, 'tcx:'b> ImportResolver<'a, 'b, 'tcx> {
Some(name) => format!(". Did you mean to use `{}`?", name),
None => "".to_owned(),
};
let msg = format!("There is no `{}` in `{}`{}",
source,
module_to_string(target_module), lev_suggestion);
let module_str = module_to_string(target_module);
let msg = if &module_str == "???" {
format!("There is no `{}` in the crate root{}", source, lev_suggestion)
} else {
format!("There is no `{}` in `{}`{}", source, module_str, lev_suggestion)
};
return Failed(Some((directive.span, msg)));
}
_ => (),
Expand Down
16 changes: 16 additions & 0 deletions src/test/compile-fail/issue-32833.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use bar::Foo; //~ ERROR There is no `Foo` in `bar` [E0432]
mod bar {
use Foo; //~ ERROR There is no `Foo` in the crate root [E0432]
}

fn main() {}
4 changes: 2 additions & 2 deletions src/test/compile-fail/use-mod-2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

mod foo {
use self::{self};
//~^ ERROR unresolved import `self`. There is no `self` in `???`
//~^ ERROR unresolved import `self`. There is no `self` in the crate root

use super::{self};
//~^ ERROR unresolved import `super`. There is no `super` in `???`
//~^ ERROR unresolved import `super`. There is no `super` in the crate root
}

fn main() {}

0 comments on commit c9c8509

Please sign in to comment.