Skip to content

Commit 5d63f5d

Browse files
committed
Allow emitting diagnostics from the #[diagnostic] namespace without a
nightly feature (Using this attribute still requires a nightly feature, this just enables that this feature does not need to be enabled on the child crate as well)
1 parent 920e005 commit 5d63f5d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler/rustc_trait_selection/src/traits/error_reporting/on_unimplemented.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ impl<'tcx> OnUnimplementedDirective {
550550
pub fn of_item(tcx: TyCtxt<'tcx>, item_def_id: DefId) -> Result<Option<Self>, ErrorGuaranteed> {
551551
if let Some(attr) = tcx.get_attr(item_def_id, sym::rustc_on_unimplemented) {
552552
return Self::parse_attribute(attr, false, tcx, item_def_id);
553-
} else if tcx.features().diagnostic_namespace {
553+
} else {
554554
tcx.get_attrs_by_path(item_def_id, &[sym::diagnostic, sym::on_unimplemented])
555555
.filter_map(|attr| Self::parse_attribute(attr, true, tcx, item_def_id).transpose())
556556
.try_fold(None, |aggr: Option<Self>, directive| {
@@ -621,8 +621,6 @@ impl<'tcx> OnUnimplementedDirective {
621621
Ok(Some(directive))
622622
}
623623
})
624-
} else {
625-
Ok(None)
626624
}
627625
}
628626

0 commit comments

Comments
 (0)