-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Standard library function "backtrace_rs::backtrace::trace_unsynchronized"
does not codegen (closure crash)
#220
Comments
I think this is the same error I see when trying to build std lib after the #233 fix. |
Relevant comment: ty::ReLateBound(index, _br) if *index == self.binder_index => {
// If you hit this, you should be using `Binder::bind_with_vars` or `Binder::rebind`
bug!("Trying to collect bound vars with a bound region: {:?} {:?}", index, _br)
} |
I suspect the let instance = Instance::resolve(
self.tcx,
ty::ParamEnv::reveal_all(),
def_id,
trait_ref_t.skip_binder().substs,
)
.unwrap()
.unwrap(); |
A change to |
Update: on dc073e5 we get further into compilation, but still fail with: thread 'rustc' panicked at 'index out of bounds: the len is 0 but the index is 0', compiler/rustc_codegen_llvm/src/gotoc/statement.rs:292:41 Backtrace
|
"backtrace_rs::backtrace::trace_unsynchronized"
does not codegen"backtrace_rs::backtrace::trace_unsynchronized"
does not codegen (closure crash)
Minimal case for the same crash; we fail on boxed closure impls. fn main() {
// Create a boxed once-callable closure
let f: Box<dyn FnOnce()> = Box::new(|| {
});
// Call it
f();
} |
related #109
The text was updated successfully, but these errors were encountered: