Skip to content

Fix the E0252 error message to use better names for things. #26385

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 18, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion src/librustc_resolve/resolve_imports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use self::ImportDirectiveSubclass::*;

use DefModifiers;
use Module;
use ModuleKind;
use Namespace::{self, TypeNS, ValueNS};
use NameBindings;
use NamespaceResult::{BoundResult, UnboundResult, UnknownResult};
Expand Down Expand Up @@ -899,7 +900,19 @@ impl<'a, 'b:'a, 'tcx:'b> ImportResolver<'a, 'b, 'tcx> {
match target {
Some(ref target) if target.shadowable != Shadowable::Always => {
let ns_word = match namespace {
TypeNS => "type",
TypeNS => {
if let Some(ref ty_def) = *target.bindings.type_def.borrow() {
match ty_def.module_def {
Some(ref module)
if module.kind.get() == ModuleKind::NormalModuleKind =>
"module",
Some(ref module)
if module.kind.get() == ModuleKind::TraitModuleKind =>
"trait",
_ => "type",
}
} else { "type" }
},
ValueNS => "value",
};
span_err!(self.resolver.session, import_span, E0252,
Expand Down
37 changes: 37 additions & 0 deletions src/test/compile-fail/issue-25396.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
// Copyright 2015 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 foo::baz;
use bar::baz; //~ ERROR a module named `baz` has already been imported

use foo::Quux;
use bar::Quux; //~ ERROR a trait named `Quux` has already been imported

use foo::blah;
use bar::blah; //~ ERROR a type named `blah` has already been imported

use foo::WOMP;
use bar::WOMP; //~ ERROR a value named `WOMP` has already been imported

fn main() {}

mod foo {
pub mod baz {}
pub trait Quux { }
pub type blah = (f64, u32);
pub const WOMP: u8 = 5;
}

mod bar {
pub mod baz {}
pub type Quux = i32;
struct blah { x: i8 }
pub const WOMP: i8 = -5;
}