You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A friend was teaching me Rust and showing me the distinction between return and the value of an expression, and when I tried to put a return in a top level const, we got a panic.
rustc 1.13.0 (2c6933acc 2016-11-07)
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
thread 'rustc' panicked at 'assertion failed: match self.hir.tcx().region_maps.code_extent_data(self.scopes[1].extent) {
CodeExtentData::ParameterScope { .. } => true,
_ => false,
}', ../src/librustc_mir/build/scope.rs:435
note: Run with `RUST_BACKTRACE=1` for a backtrace.
The text was updated successfully, but these errors were encountered:
sanxiyn
added
the
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
label
Dec 19, 2016
A friend was teaching me Rust and showing me the distinction between
return
and the value of an expression, and when I tried to put areturn
in a top levelconst
, we got a panic.Here's a minimal reproducing case.
Playground
Fails with:
The text was updated successfully, but these errors were encountered: