Skip to content

Commit c6512fd

Browse files
committed
run const_eval_raw with root_span
1 parent 6049650 commit c6512fd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/librustc_mir/interpret/eval_context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
891891
// FIXME: We can hit delay_span_bug if this is an invalid const, interning finds
892892
// that problem, but we never run validation to show an error. Can we ensure
893893
// this does not happen?
894-
let val = self.tcx.at(self.cur_span()).const_eval_raw(param_env.and(gid))?;
894+
let val = self.tcx_at().const_eval_raw(param_env.and(gid))?;
895895
self.raw_const_to_mplace(val)
896896
}
897897

src/test/ui/infinite/infinite-recursion-const-fn.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
error[E0391]: cycle detected when const-evaluating `a`
2-
--> $DIR/infinite-recursion-const-fn.rs:3:25
2+
--> $DIR/infinite-recursion-const-fn.rs:3:1
33
|
44
LL | const fn a() -> usize { b() }
5-
| ^^^
5+
| ^^^^^^^^^^^^^^^^^^^^^
66
|
77
note: ...which requires const-evaluating `b`...
8-
--> $DIR/infinite-recursion-const-fn.rs:4:25
8+
--> $DIR/infinite-recursion-const-fn.rs:4:1
99
|
1010
LL | const fn b() -> usize { a() }
11-
| ^^^
11+
| ^^^^^^^^^^^^^^^^^^^^^
1212
= note: ...which again requires const-evaluating `a`, completing the cycle
1313
note: cycle used when const-evaluating `ARR::{{constant}}#0`
1414
--> $DIR/infinite-recursion-const-fn.rs:5:18

0 commit comments

Comments
 (0)