Skip to content

Commit ceb4c3f

Browse files
committed
stability: Do not use buffer_lint after lowering to HIR
1 parent 58b5491 commit ceb4c3f

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

src/librustc/middle/stability.rs

+11-3
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,13 @@ pub fn provide(providers: &mut Providers<'_>) {
485485
}
486486

487487
pub fn report_unstable(
488-
sess: &Session, feature: Symbol, reason: Option<Symbol>, issue: u32, is_soft: bool, span: Span
488+
sess: &Session,
489+
feature: Symbol,
490+
reason: Option<Symbol>,
491+
issue: u32,
492+
is_soft: bool,
493+
span: Span,
494+
soft_handler: impl FnOnce(&'static lint::Lint, Span, &str),
489495
) {
490496
let msg = match reason {
491497
Some(r) => format!("use of unstable library feature '{}': {}", feature, r),
@@ -511,7 +517,7 @@ pub fn report_unstable(
511517
let fresh = sess.one_time_diagnostics.borrow_mut().insert(error_id);
512518
if fresh {
513519
if is_soft {
514-
sess.buffer_lint(lint::builtin::SOFT_UNSTABLE, CRATE_NODE_ID, span, &msg);
520+
soft_handler(lint::builtin::SOFT_UNSTABLE, span, &msg)
515521
} else {
516522
emit_feature_err(
517523
&sess.parse_sess, feature, span, GateIssue::Library(Some(issue)), &msg
@@ -779,10 +785,12 @@ impl<'tcx> TyCtxt<'tcx> {
779785
/// Additionally, this function will also check if the item is deprecated. If so, and `id` is
780786
/// not `None`, a deprecated lint attached to `id` will be emitted.
781787
pub fn check_stability(self, def_id: DefId, id: Option<HirId>, span: Span) {
788+
let soft_handler =
789+
|lint, span, msg: &_| self.lint_hir(lint, id.unwrap_or(hir::CRATE_HIR_ID), span, msg);
782790
match self.eval_stability(def_id, id, span) {
783791
EvalResult::Allow => {}
784792
EvalResult::Deny { feature, reason, issue, is_soft } =>
785-
report_unstable(self.sess, feature, reason, issue, is_soft, span),
793+
report_unstable(self.sess, feature, reason, issue, is_soft, span, soft_handler),
786794
EvalResult::Unmarked => {
787795
// The API could be uncallable for other reasons, for example when a private module
788796
// was referenced.

src/librustc_resolve/macros.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,12 @@ impl<'a> Resolver<'a> {
796796
if let StabilityLevel::Unstable { reason, issue, is_soft } = stability.level {
797797
let feature = stability.feature;
798798
if !self.active_features.contains(&feature) && !span.allows_unstable(feature) {
799-
stability::report_unstable(self.session, feature, reason, issue, is_soft, span);
799+
let node_id = ast::CRATE_NODE_ID;
800+
let soft_handler =
801+
|lint, span, msg: &_| self.session.buffer_lint(lint, node_id, span, msg);
802+
stability::report_unstable(
803+
self.session, feature, reason, issue, is_soft, span, soft_handler
804+
);
800805
}
801806
}
802807
if let Some(depr) = &stability.rustc_depr {

src/test/ui/feature-gates/bench.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
// edition:2018
2+
13
#[bench] //~ ERROR use of unstable library feature 'test'
24
//~| WARN this was previously accepted
35
fn bench() {}
46

7+
use bench as _; //~ ERROR use of unstable library feature 'test'
8+
//~| WARN this was previously accepted
59
fn main() {}
+11-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
2-
--> $DIR/bench.rs:1:3
2+
--> $DIR/bench.rs:3:3
33
|
44
LL | #[bench]
55
| ^^^^^
@@ -8,5 +8,14 @@ LL | #[bench]
88
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
99
= note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
1010

11-
error: aborting due to previous error
11+
error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
12+
--> $DIR/bench.rs:7:5
13+
|
14+
LL | use bench as _;
15+
| ^^^^^
16+
|
17+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
18+
= note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
19+
20+
error: aborting due to 2 previous errors
1221

0 commit comments

Comments
 (0)