Skip to content

Rollup of 5 pull requests #27082

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 6 commits into from
Jul 17, 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
35 changes: 24 additions & 11 deletions src/librustc_typeck/collect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -747,17 +747,7 @@ fn convert_methods<'a,'tcx,'i,I>(ccx: &CrateCtxt<'a, 'tcx>,
rcvr_ty_generics,
rcvr_ty_predicates);

let tcx = ccx.tcx;
let mut seen_methods = FnvHashSet();
for (sig, id, ident, vis, span) in methods {
if !seen_methods.insert(ident.name) {
let fn_desc = match sig.explicit_self.node {
ast::SelfStatic => "associated function",
_ => "method",
};
span_err!(tcx.sess, span, E0201, "duplicate {}", fn_desc);
}

for (sig, id, ident, vis, _span) in methods {
convert_method(ccx,
container,
sig,
Expand Down Expand Up @@ -859,7 +849,30 @@ fn convert_item(ccx: &CrateCtxt, it: &ast::Item) {
};

// Convert all the associated consts.
// Also, check if there are any duplicate associated items
let mut seen_type_items = FnvHashSet();
let mut seen_value_items = FnvHashSet();

for impl_item in impl_items {
let seen_items = match impl_item.node {
ast::TypeImplItem(_) => &mut seen_type_items,
_ => &mut seen_value_items,
};
if !seen_items.insert(impl_item.ident.name) {
let desc = match impl_item.node {
ast::ConstImplItem(_, _) => "associated constant",
ast::TypeImplItem(_) => "associated type",
ast::MethodImplItem(ref sig, _) =>
match sig.explicit_self.node {
ast::SelfStatic => "associated function",
_ => "method",
},
_ => "associated item",
};

span_err!(tcx.sess, impl_item.span, E0201, "duplicate {}", desc);
}

if let ast::ConstImplItem(ref ty, ref expr) = impl_item.node {
let ty = ccx.icx(&ty_predicates)
.to_ty(&ExplicitRscope, &*ty);
Expand Down
13 changes: 9 additions & 4 deletions src/librustc_typeck/diagnostics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,8 @@ unsafe impl Bar for Foo { }
"##,

E0201: r##"
It is an error to define an associated function more than once.
It is an error to define two associated items (like methods, associated types,
associated functions, etc.) with the same identifier.

For example:

Expand All @@ -1698,20 +1699,24 @@ struct Foo(u8);

impl Foo {
fn bar(&self) -> bool { self.0 > 5 }

// error: duplicate associated function
fn bar() {}
fn bar() {} // error: duplicate associated function
}

trait Baz {
type Quux;
fn baz(&self) -> bool;
}

impl Baz for Foo {
type Quux = u32;

fn baz(&self) -> bool { true }

// error: duplicate method
fn baz(&self) -> bool { self.0 > 5 }

// error: duplicate associated type
type Quux = u32;
}
```
"##,
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//! Inspection and manipulation of the process's environment.
//!
//! This module contains methods to inspect various aspects such as
//! environment varibles, process arguments, the current directory, and various
//! environment variables, process arguments, the current directory, and various
//! other important directories.

#![stable(feature = "env", since = "1.0.0")]
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/sys/windows/ext/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

//! Windows-specific primitives

#[stable(feature = "raw_ext", since = "1.1.0")]
#![stable(feature = "raw_ext", since = "1.1.0")]

use os::raw::c_void;

Expand Down
20 changes: 20 additions & 0 deletions src/test/compile-fail/associated-item-duplicate-names-2.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// 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.

#![feature(associated_consts)]

struct Foo;

impl Foo {
const bar: bool = true;
fn bar() {} //~ ERROR duplicate associated function
}

fn main() {}
28 changes: 28 additions & 0 deletions src/test/compile-fail/associated-item-duplicate-names-3.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// 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.
//
// Before the introduction of the "duplicate associated type" error, the
// program below used to result in the "ambiguous associated type" error E0223,
// which is unexpected.

trait Foo {
type Bar;
}

struct Baz;

impl Foo for Baz {
type Bar = i16;
type Bar = u16; //~ ERROR duplicate associated type
}

fn main() {
let x: Baz::Bar = 5;
}
30 changes: 30 additions & 0 deletions src/test/compile-fail/associated-item-duplicate-names.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// 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.

// Test for issue #23969

#![feature(associated_consts)]

trait Foo {
type Ty;
const BAR: u32;
}

impl Foo for () {
type Ty = ();
type Ty = usize; //~ ERROR duplicate associated type
const BAR: u32 = 7;
const BAR: u32 = 8; //~ ERROR duplicate associated constant
}

fn main() {
let _: <() as Foo>::Ty = ();
let _: u32 = <() as Foo>::BAR;
}