mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
restrict access to span only when we emit diagnostic
This commit is contained in:
parent
1c9ddd2e3e
commit
7ea034afad
@ -24,13 +24,13 @@ pub fn check_crate<'tcx>(tcx: TyCtxt<'tcx>, items: &mut lang_items::LanguageItem
|
||||
let crate_items = tcx.hir_crate_items(());
|
||||
for id in crate_items.foreign_items() {
|
||||
let attrs = tcx.hir().attrs(id.hir_id());
|
||||
let span = tcx.hir().span(id.hir_id());
|
||||
if let Some((lang_item, _)) = lang_items::extract(attrs) {
|
||||
if let Some(&item) = WEAK_ITEMS_REFS.get(&lang_item) {
|
||||
if items.require(item).is_err() {
|
||||
items.missing.push(item);
|
||||
}
|
||||
} else {
|
||||
let span = tcx.def_span(id.def_id);
|
||||
struct_span_err!(
|
||||
tcx.sess,
|
||||
span,
|
||||
|
Loading…
Reference in New Issue
Block a user