Skip to content

Commit 0255561

Browse files
authored
Rollup merge of #69623 - Centril:fix-69396-tmp, r=petrochenkov
stash API: remove panic to fix ICE. Implements the temporary solution suggested in #69537 (comment). Fixes #69396. r? @petrochenkov
2 parents 74a8d8f + df20036 commit 0255561

File tree

3 files changed

+74
-14
lines changed

3 files changed

+74
-14
lines changed

src/librustc_errors/lib.rs

+4-14
Original file line numberDiff line numberDiff line change
@@ -444,22 +444,12 @@ impl Handler {
444444
}
445445

446446
/// Stash a given diagnostic with the given `Span` and `StashKey` as the key for later stealing.
447-
/// If the diagnostic with this `(span, key)` already exists, this will result in an ICE.
448447
pub fn stash_diagnostic(&self, span: Span, key: StashKey, diag: Diagnostic) {
449448
let mut inner = self.inner.borrow_mut();
450-
if let Some(mut old_diag) = inner.stashed_diagnostics.insert((span, key), diag) {
451-
// We are removing a previously stashed diagnostic which should not happen.
452-
old_diag.level = Bug;
453-
old_diag.note(&format!(
454-
"{}:{}: already existing stashed diagnostic with (span = {:?}, key = {:?})",
455-
file!(),
456-
line!(),
457-
span,
458-
key
459-
));
460-
inner.emit_diag_at_span(old_diag, span);
461-
panic!(ExplicitBug);
462-
}
449+
// FIXME(Centril, #69537): Consider reintroducing panic on overwriting a stashed diagnostic
450+
// if/when we have a more robust macro-friendly replacement for `(span, key)` as a key.
451+
// See the PR for a discussion.
452+
inner.stashed_diagnostics.insert((span, key), diag);
463453
}
464454

465455
/// Steal a previously stashed diagnostic with the given `Span` and `StashKey` as the key.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
macro_rules! suite {
2+
( $( $fn:ident; )* ) => {
3+
$(
4+
const A = "A".$fn();
5+
//~^ ERROR the name `A` is defined multiple times
6+
//~| ERROR missing type for `const` item
7+
//~| ERROR the type placeholder `_` is not allowed within types
8+
)*
9+
}
10+
}
11+
12+
suite! {
13+
len;
14+
is_empty;
15+
}
16+
17+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
error[E0428]: the name `A` is defined multiple times
2+
--> $DIR/issue-69396-const-no-type-in-macro.rs:4:13
3+
|
4+
LL | const A = "A".$fn();
5+
| ^^^^^^^^^^^^^^^^^^^^
6+
| |
7+
| `A` redefined here
8+
| previous definition of the value `A` here
9+
...
10+
LL | / suite! {
11+
LL | | len;
12+
LL | | is_empty;
13+
LL | | }
14+
| |_- in this macro invocation
15+
|
16+
= note: `A` must be defined only once in the value namespace of this module
17+
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
18+
19+
error: missing type for `const` item
20+
--> $DIR/issue-69396-const-no-type-in-macro.rs:4:19
21+
|
22+
LL | const A = "A".$fn();
23+
| ^ help: provide a type for the item: `A: usize`
24+
...
25+
LL | / suite! {
26+
LL | | len;
27+
LL | | is_empty;
28+
LL | | }
29+
| |_- in this macro invocation
30+
|
31+
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
32+
33+
error[E0121]: the type placeholder `_` is not allowed within types on item signatures
34+
--> $DIR/issue-69396-const-no-type-in-macro.rs:4:19
35+
|
36+
LL | const A = "A".$fn();
37+
| ^
38+
| |
39+
| not allowed in type signatures
40+
| help: replace `_` with the correct type: `bool`
41+
...
42+
LL | / suite! {
43+
LL | | len;
44+
LL | | is_empty;
45+
LL | | }
46+
| |_- in this macro invocation
47+
|
48+
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
49+
50+
error: aborting due to 3 previous errors
51+
52+
Some errors have detailed explanations: E0121, E0428.
53+
For more information about an error, try `rustc --explain E0121`.

0 commit comments

Comments
 (0)