Errors in `DiagCtxtInner::emit_diagnostic` are never set to `Level::Bug`, because the condition never succeeds, because `self.treat_err_as_bug()` is called *before* the error counts are incremented. This commit switches to `self.treat_next_err_as_bug()`, fixing the problem. This changes the error message output to actually say "internal compiler error".
13 lines
555 B
Text
13 lines
555 B
Text
error: internal compiler error[E0080]: evaluation of constant value failed
|
|
--> $DIR/const-eval-query-stack.rs:16:16
|
|
|
|
|
LL | const X: i32 = 1 / 0;
|
|
| ^^^^^ attempt to divide `1_i32` by zero
|
|
|
|
query stack during panic:
|
|
#0 [eval_to_allocation_raw] const-evaluating + checking `X`
|
|
#1 [eval_to_const_value_raw] simplifying constant for the type system `X`
|
|
#2 [eval_to_const_value_raw] simplifying constant for the type system `X`
|
|
#3 [lint_mod] linting top-level module
|
|
#4 [analysis] running analysis passes on this crate
|
|
end of query stack
|