Skip to content

Commit

Permalink
Rollup merge of rust-lang#31818 - GuillaumeGomez:error_display, r=brson
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Feb 25, 2016
2 parents db86810 + dfe72fa commit 7731cdc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/librustc/middle/lang_items.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,13 @@ impl<'a, 'tcx> LanguageItemCollector<'a, 'tcx> {
// Check for duplicates.
match self.items.items[item_index] {
Some(original_def_id) if original_def_id != item_def_id => {
let cstore = &self.session.cstore;
span_err!(self.session, span, E0152,
"duplicate entry for `{}`", LanguageItems::item_name(item_index));
"duplicate entry for `{}`, first definition found in `{}`",
LanguageItems::item_name(item_index),
cstore.crate_name(item_def_id.krate));
}
Some(_) | None => {
_ => {
// OK.
}
}
Expand Down
22 changes: 22 additions & 0 deletions src/test/compile-fail/duplicate_entry_error.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// 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 #31788

// error-pattern: duplicate entry for `panic_fmt`, first definition found in `std`

#![feature(lang_items)]

#[lang = "panic_fmt"]
fn panic_fmt() -> ! {
loop {}
}

fn main() {}

0 comments on commit 7731cdc

Please sign in to comment.