Skip to content
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

ICE: not enough bound vars #132059

Closed
matthiaskrgr opened this issue Oct 23, 2024 · 2 comments
Closed

ICE: not enough bound vars #132059

matthiaskrgr opened this issue Oct 23, 2024 · 2 comments
Labels
C-bug Category: This is a bug. E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added. F-return_position_impl_trait_in_trait `#![feature(return_position_impl_trait_in_trait)]` F-return_type_notation `#[feature(return_type_notation)]` I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ requires-debug-assertions This issue requires a build of rustc or tooling with debug-assertions in some way S-has-mcve Status: A Minimal Complete and Verifiable Example has been found for this issue T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@matthiaskrgr
Copy link
Member

auto-reduced (treereduce-rust):

trait IntFactory {
    fn stream(&self) -> impl IntFactory<stream(): Send>;
}

original:

#![feature(return_position_impl_trait_in_trait, return_type_notation)]

trait IntFactory {
    fn stream(&self) -> impl IntFactory<stream(): Send>;
}
trait SendIntFactory: IntFactory<stream(): Send> + Send {}

Version information

rustc 1.84.0-dev
binary: rustc
commit-hash: unknown
commit-date: unknown
host: x86_64-unknown-linux-gnu
release: 1.84.0-dev
LLVM version: 19.1.1

Command:
/home/gh-matthiaskrgr/.rustup/toolchains/local-debug-assertions/bin/rustc

@rustbot label +F-return_position_impl_trait_in_trait +F-return_type_notation

@matthiaskrgr matthiaskrgr added C-bug Category: This is a bug. I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ requires-debug-assertions This issue requires a build of rustc or tooling with debug-assertions in some way T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Oct 23, 2024
@rustbot rustbot added needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. F-return_position_impl_trait_in_trait `#![feature(return_position_impl_trait_in_trait)]` F-return_type_notation `#[feature(return_type_notation)]` labels Oct 23, 2024
@matthiaskrgr
Copy link
Member Author

Program output

error: return type notation arguments must be elided with `..`
 --> /tmp/icemaker_global_tempdir.cD5saMN1MdRc/rustc_testrunner_tmpdir_reporting.R9hKcstD0evs/mvce.rs:2:47
  |
2 |     fn stream(&self) -> impl IntFactory<stream(): Send>;
  |                                               ^^ help: add `..`: `(..)`
  |
  = note: see issue #109417 <https://github.com/rust-lang/rust/issues/109417> for more information
  = help: add `#![feature(return_type_notation)]` to the crate attributes to enable

error[E0601]: `main` function not found in crate `mvce`
 --> /tmp/icemaker_global_tempdir.cD5saMN1MdRc/rustc_testrunner_tmpdir_reporting.R9hKcstD0evs/mvce.rs:3:2
  |
3 | }
  |  ^ consider adding a `main` function to `/tmp/icemaker_global_tempdir.cD5saMN1MdRc/rustc_testrunner_tmpdir_reporting.R9hKcstD0evs/mvce.rs`

thread 'rustc' panicked at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_type_ir/src/binder.rs:320:21:
Not enough bound vars: '^0.Named(DefId(0:6 ~ mvce[312f]::IntFactory::stream::'_), "'_") not found in []
stack backtrace:
   0:     0x7c64ab28a7c2 - std::backtrace_rs::backtrace::libunwind::trace::h39b660a26721b0f8
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/../../backtrace/src/backtrace/libunwind.rs:116:5
   1:     0x7c64ab28a7c2 - std::backtrace_rs::backtrace::trace_unsynchronized::h39c524581fe03b15
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
   2:     0x7c64ab28a7c2 - std::sys::backtrace::_print_fmt::h8136e918e624907c
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:66:9
   3:     0x7c64ab28a7c2 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::he0df1f5686b8eb91
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:39:26
   4:     0x7c64a60d4810 - core::fmt::rt::Argument::fmt::hfcb22cb88e74be07
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/fmt/rt.rs:177:76
   5:     0x7c64a60d4810 - core::fmt::write::hdc12c85fb7bc27ae
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/fmt/mod.rs:1186:21
   6:     0x7c64ab25d819 - std::io::Write::write_fmt::h45f9f6bb023264f8
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/io/mod.rs:1839:15
   7:     0x7c64ab28a663 - std::sys::backtrace::BacktraceLock::print::h82a8640cf9740649
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:42:9
   8:     0x7c64ab267f4e - std::panicking::default_hook::{{closure}}::h93fa862ca43468cb
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:268:22
   9:     0x7c64ab267cff - std::panicking::default_hook::h385816b12defc7cd
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:295:9
  10:     0x7c64a7682dde - rustc_driver_impl[d53949a56cff6e47]::install_ice_hook::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_driver_impl/src/lib.rs:1420:17
  11:     0x7c64a7682dde - <alloc[130f82db71d01b86]::boxed::Box<rustc_driver_impl[d53949a56cff6e47]::install_ice_hook::{closure#0}> as core[2f0fa1be9e5c8a84]::ops::function::Fn<(&dyn for<'a, 'b> core[2f0fa1be9e5c8a84]::ops::function::Fn<(&'a std[16333f6aaad505fa]::panic::PanicHookInfo<'b>,), Output = ()> + core[2f0fa1be9e5c8a84]::marker::Send + core[2f0fa1be9e5c8a84]::marker::Sync, &std[16333f6aaad505fa]::panic::PanicHookInfo)>>::call
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/alloc/src/boxed.rs:2468:9
  12:     0x7c64ab26858f - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h5aa0dfa5f278db05
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/alloc/src/boxed.rs:2468:9
  13:     0x7c64ab26858f - std::panicking::rust_panic_with_hook::he7d81eb9868759b2
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:809:13
  14:     0x7c64ab28aeaa - std::panicking::begin_panic_handler::{{closure}}::ha501fde8982e2a61
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:674:13
  15:     0x7c64ab28aad9 - std::sys::backtrace::__rust_end_short_backtrace::h12db7e1f9fbfe77b
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:170:18
  16:     0x7c64ab26804e - rust_begin_unwind
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:665:5
  17:     0x7c64a60e37a0 - core::panicking::panic_fmt::ha8bfcd3cb9149158
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/panicking.rs:74:14
  18:     0x7c64a7b1c064 - <rustc_type_ir[5cad8c5e4076757e]::binder::ValidateBoundVars<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt> as rustc_type_ir[5cad8c5e4076757e]::visit::TypeVisitor<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>::visit_region
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_type_ir/src/binder.rs:320:21
  19:     0x7c64a7e43324 - <rustc_middle[7f8b6a882add38a0]::ty::region::Region as rustc_type_ir[5cad8c5e4076757e]::visit::TypeVisitable<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>::visit_with::<rustc_type_ir[5cad8c5e4076757e]::binder::ValidateBoundVars<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/structural_impls.rs:472:9
  20:     0x7c64a7e43324 - <rustc_middle[7f8b6a882add38a0]::ty::generic_args::GenericArg as rustc_type_ir[5cad8c5e4076757e]::visit::TypeVisitable<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>::visit_with::<rustc_type_ir[5cad8c5e4076757e]::binder::ValidateBoundVars<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/generic_args.rs:335:48
  21:     0x7c64a7e43324 - <&rustc_middle[7f8b6a882add38a0]::ty::list::RawList<(), rustc_middle[7f8b6a882add38a0]::ty::generic_args::GenericArg> as rustc_type_ir[5cad8c5e4076757e]::visit::TypeVisitable<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>::visit_with::<rustc_type_ir[5cad8c5e4076757e]::binder::ValidateBoundVars<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/generic_args.rs:648:9
  22:     0x7c64a7e43324 - <rustc_type_ir[5cad8c5e4076757e]::predicate::TraitRef<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt> as rustc_type_ir[5cad8c5e4076757e]::visit::TypeVisitable<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>::visit_with::<rustc_type_ir[5cad8c5e4076757e]::binder::ValidateBoundVars<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_type_ir/src/predicate.rs:52:10
  23:     0x7c64a7b557d0 - <rustc_type_ir[5cad8c5e4076757e]::binder::Binder<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt, rustc_type_ir[5cad8c5e4076757e]::predicate::AliasTerm<rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>>>::bind_with_vars
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_type_ir/src/binder.rs:116:13
  24:     0x7c64a7b557d0 - <dyn rustc_hir_analysis[fb33a335b5053e64]::hir_ty_lowering::HirTyLowerer>::lower_assoc_item_constraint
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/hir_ty_lowering/bounds.rs:298:13
  25:     0x7c64a7b557d0 - <dyn rustc_hir_analysis[fb33a335b5053e64]::hir_ty_lowering::HirTyLowerer>::lower_poly_trait_ref
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs:721:49
  26:     0x7c64a7b48a3a - <dyn rustc_hir_analysis[fb33a335b5053e64]::hir_ty_lowering::HirTyLowerer>::lower_bounds::<&[rustc_hir[584a46a08f82d4f5]::hir::GenericBound]>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/hir_ty_lowering/bounds.rs:185:29
  27:     0x7c64a7d27738 - rustc_hir_analysis[fb33a335b5053e64]::collect::item_bounds::opaque_type_bounds
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/collect/item_bounds.rs:309:9
  28:     0x7c64a7d12628 - rustc_hir_analysis[fb33a335b5053e64]::collect::item_bounds::explicit_item_bounds_with_filter
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/collect/item_bounds.rs:389:22
  29:     0x7c64a7d12216 - rustc_hir_analysis[fb33a335b5053e64]::collect::item_bounds::explicit_item_bounds
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/collect/item_bounds.rs:322:5
  30:     0x7c64a9e3e7cc - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::explicit_item_bounds::dynamic_query::{closure#2}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:287:13
  31:     0x7c64a9e3e7cc - rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::__rust_begin_short_backtrace::<rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::explicit_item_bounds::dynamic_query::{closure#2}::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:548:18
  32:     0x7c64a9fd2105 - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::explicit_item_bounds::dynamic_query::{closure#2}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:622:25
  33:     0x7c64a9fd2105 - <rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::explicit_item_bounds::dynamic_query::{closure#2} as core[2f0fa1be9e5c8a84]::ops::function::FnOnce<(rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt, rustc_span[949c7d79f35b44d4]::def_id::DefId)>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/ops/function.rs:250:5
  34:     0x7c64a9ce8859 - <rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false> as rustc_query_system[efaf35faa88632fc]::query::config::QueryConfig<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>>::compute
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/lib.rs:110:9
  35:     0x7c64a9ce8859 - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:478:72
  36:     0x7c64a9ce8859 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:82:9
  37:     0x7c64a9ce8859 - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::try_with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:283:12
  38:     0x7c64a9ce8859 - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:260:9
  39:     0x7c64a9ce8859 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:79:9
  40:     0x7c64a9ce8859 - <rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:151:13
  41:     0x7c64a9ce8859 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context::<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:134:9
  42:     0x7c64a9ce8859 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:112:36
  43:     0x7c64a9ce8859 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context_opt::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:101:18
  44:     0x7c64a9ce8859 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:112:5
  45:     0x7c64a9ce8859 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context::<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:125:5
  46:     0x7c64a9ce8859 - <rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:136:9
  47:     0x7c64a9ce8859 - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:478:18
  48:     0x7c64a9ce8859 - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:414:9
  49:     0x7c64a9ce8859 - rustc_query_system[efaf35faa88632fc]::query::plumbing::try_execute_query::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:357:13
  50:     0x7c64a9fd9b4e - rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:809:32
  51:     0x7c64a9fd9b4e - stacker[5532783c75b3bb1e]::maybe_grow::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/.cargo/registry/src/index.crates.io-6f17d22bba15001f/stacker-0.1.17/src/lib.rs:55:9
  52:     0x7c64a9fd9b4e - rustc_data_structures[9af2dff3907b6b46]::stack::ensure_sufficient_stack::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/stack.rs:21:5
  53:     0x7c64a9fd9b4e - rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:809:5
  54:     0x7c64a9fd9b4e - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::explicit_item_bounds::get_query_non_incr::__rust_end_short_backtrace
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:598:26
  55:     0x7c64a7be4846 - rustc_middle[7f8b6a882add38a0]::query::plumbing::query_ensure::<rustc_query_system[efaf35faa88632fc]::query::caches::DefIdCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 16usize]>>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:159:9
  56:     0x7c64a7be4846 - <rustc_middle[7f8b6a882add38a0]::query::plumbing::TyCtxtEnsure>::explicit_item_bounds::<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:194:9
  57:     0x7c64a7be4846 - <rustc_hir_analysis[fb33a335b5053e64]::collect::CollectItemTypesVisitor as rustc_hir[584a46a08f82d4f5]::intravisit::Visitor>::visit_opaque_ty
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/collect.rs:336:9
  58:     0x7c64a7a3d092 - rustc_hir[584a46a08f82d4f5]::intravisit::walk_ty::<rustc_hir_analysis[fb33a335b5053e64]::collect::CollectItemTypesVisitor>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir/src/intravisit.rs:900:24
  59:     0x7c64a7a31398 - <rustc_hir_analysis[fb33a335b5053e64]::collect::CollectItemTypesVisitor as rustc_hir[584a46a08f82d4f5]::intravisit::Visitor>::visit_ty
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir/src/intravisit.rs:365:9
  60:     0x7c64a7a31398 - rustc_hir[584a46a08f82d4f5]::intravisit::walk_fn_ret_ty::<rustc_hir_analysis[fb33a335b5053e64]::collect::CollectItemTypesVisitor>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir/src/intravisit.rs:1006:20
  61:     0x7c64a7a31398 - <rustc_hir_analysis[fb33a335b5053e64]::collect::CollectItemTypesVisitor as rustc_hir[584a46a08f82d4f5]::intravisit::Visitor>::visit_fn_ret_ty
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir/src/intravisit.rs:385:9
  62:     0x7c64a7a31398 - rustc_hir[584a46a08f82d4f5]::intravisit::walk_fn_decl::<rustc_hir_analysis[fb33a335b5053e64]::collect::CollectItemTypesVisitor>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir/src/intravisit.rs:1001:5
  63:     0x7c64a7a31398 - <rustc_hir_analysis[fb33a335b5053e64]::collect::CollectItemTypesVisitor as rustc_hir[584a46a08f82d4f5]::intravisit::Visitor>::visit_fn_decl
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir/src/intravisit.rs:388:9
  64:     0x7c64a7a31398 - rustc_hir[584a46a08f82d4f5]::intravisit::walk_trait_item::<rustc_hir_analysis[fb33a335b5053e64]::collect::CollectItemTypesVisitor>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir/src/intravisit.rs:1063:24
  65:     0x7c64a7be5b55 - <rustc_hir_analysis[fb33a335b5053e64]::collect::CollectItemTypesVisitor as rustc_hir[584a46a08f82d4f5]::intravisit::Visitor>::visit_trait_item
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/collect.rs:345:9
  66:     0x7c64a7cd092c - rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_trait_item
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/check/wfcheck.rs:372:5
  67:     0x7c64a7cd092c - rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_well_formed
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/check/wfcheck.rs:193:39
  68:     0x7c64a9e37516 - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_well_formed::dynamic_query::{closure#2}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:283:9
  69:     0x7c64a9e37516 - rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::__rust_begin_short_backtrace::<rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_well_formed::dynamic_query::{closure#2}::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:548:18
  70:     0x7c64aa27c4fb - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_well_formed::dynamic_query::{closure#2}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:622:25
  71:     0x7c64aa27c4fb - <rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_well_formed::dynamic_query::{closure#2} as core[2f0fa1be9e5c8a84]::ops::function::FnOnce<(rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt, rustc_span[949c7d79f35b44d4]::def_id::LocalDefId)>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/ops/function.rs:250:5
  72:     0x7c64a9daa9e0 - <rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false> as rustc_query_system[efaf35faa88632fc]::query::config::QueryConfig<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>>::compute
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/lib.rs:110:9
  73:     0x7c64a9daa9e0 - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:478:72
  74:     0x7c64a9daa9e0 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:82:9
  75:     0x7c64a9daa9e0 - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::try_with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:283:12
  76:     0x7c64a9daa9e0 - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:260:9
  77:     0x7c64a9daa9e0 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:79:9
  78:     0x7c64a9daa9e0 - <rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:151:13
  79:     0x7c64a9daa9e0 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context::<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:134:9
  80:     0x7c64a9daa9e0 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:112:36
  81:     0x7c64a9daa9e0 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context_opt::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:101:18
  82:     0x7c64a9daa9e0 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:112:5
  83:     0x7c64a9daa9e0 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context::<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:125:5
  84:     0x7c64a9daa9e0 - <rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:136:9
  85:     0x7c64a9daa9e0 - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:478:18
  86:     0x7c64a9daa9e0 - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:414:9
  87:     0x7c64a9daa9e0 - rustc_query_system[efaf35faa88632fc]::query::plumbing::try_execute_query::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:357:13
  88:     0x7c64a9f98399 - rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:809:32
  89:     0x7c64a9f98399 - stacker[5532783c75b3bb1e]::maybe_grow::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/.cargo/registry/src/index.crates.io-6f17d22bba15001f/stacker-0.1.17/src/lib.rs:55:9
  90:     0x7c64a9f98399 - rustc_data_structures[9af2dff3907b6b46]::stack::ensure_sufficient_stack::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/stack.rs:21:5
  91:     0x7c64a9f98399 - rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:809:5
  92:     0x7c64a9f98399 - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_well_formed::get_query_non_incr::__rust_end_short_backtrace
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:598:26
  93:     0x7c64a7e380ab - rustc_middle[7f8b6a882add38a0]::query::plumbing::query_ensure_error_guaranteed::<rustc_query_system[efaf35faa88632fc]::query::caches::VecCache<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:179:9
  94:     0x7c64a7e2e23c - <rustc_middle[7f8b6a882add38a0]::query::plumbing::TyCtxtEnsure>::check_well_formed::<rustc_span[949c7d79f35b44d4]::def_id::LocalDefId>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:197:9
  95:     0x7c64a7e2e23c - rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#4}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/check/wfcheck.rs:2221:44
  96:     0x7c64a7e2e23c - <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_opaques::<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#4}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/hir/mod.rs:109:54
  97:     0x7c64a7e2e23c - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in::<&[rustc_span[949c7d79f35b44d4]::def_id::LocalDefId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_opaques<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#4}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:204:50
  98:     0x7c64a7e2e23c - <core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in<&[rustc_span[949c7d79f35b44d4]::def_id::LocalDefId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_opaques<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#4}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}> as core[2f0fa1be9e5c8a84]::ops::function::FnOnce<()>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/panic/unwind_safe.rs:272:9
  99:     0x7c64a7e2e23c - std[16333f6aaad505fa]::panicking::try::do_call::<core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in<&[rustc_span[949c7d79f35b44d4]::def_id::LocalDefId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_opaques<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#4}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}>, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:557:40
 100:     0x7c64a7e2e23c - std[16333f6aaad505fa]::panicking::try::<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in<&[rustc_span[949c7d79f35b44d4]::def_id::LocalDefId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_opaques<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#4}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:520:19
 101:     0x7c64a7e2e23c - std[16333f6aaad505fa]::panic::catch_unwind::<core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in<&[rustc_span[949c7d79f35b44d4]::def_id::LocalDefId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_opaques<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#4}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}>, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panic.rs:358:14
 102:     0x7c64a7e2e23c - <rustc_data_structures[9af2dff3907b6b46]::sync::parallel::ParallelGuard>::run::<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in<&[rustc_span[949c7d79f35b44d4]::def_id::LocalDefId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_opaques<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#4}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:29:9
 103:     0x7c64a7de3fe7 - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in::<&[rustc_hir[584a46a08f82d4f5]::hir::TraitItemId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_trait_items<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#2}>::{closure#0}>::{closure#0}::{closure#2}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:207:46
 104:     0x7c64a7de3fe7 - core[2f0fa1be9e5c8a84]::iter::adapters::filter_map::filter_map_fold::<&rustc_hir[584a46a08f82d4f5]::hir::TraitItemId, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in<&[rustc_hir[584a46a08f82d4f5]::hir::TraitItemId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_trait_items<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#2}>::{closure#0}>::{closure#0}::{closure#2}, <core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::and<()>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/iter/adapters/filter_map.rs:39:28
 105:     0x7c64a7de3fe7 - <core[2f0fa1be9e5c8a84]::slice::iter::Iter<rustc_hir[584a46a08f82d4f5]::hir::TraitItemId> as core[2f0fa1be9e5c8a84]::iter::traits::iterator::Iterator>::fold::<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, core[2f0fa1be9e5c8a84]::iter::adapters::filter_map::filter_map_fold<&rustc_hir[584a46a08f82d4f5]::hir::TraitItemId, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in<&[rustc_hir[584a46a08f82d4f5]::hir::TraitItemId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_trait_items<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#2}>::{closure#0}>::{closure#0}::{closure#2}, <core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::and<()>>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/slice/iter/macros.rs:232:27
 106:     0x7c64a7de3fe7 - <core[2f0fa1be9e5c8a84]::iter::adapters::filter_map::FilterMap<core[2f0fa1be9e5c8a84]::slice::iter::Iter<rustc_hir[584a46a08f82d4f5]::hir::TraitItemId>, rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in<&[rustc_hir[584a46a08f82d4f5]::hir::TraitItemId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_trait_items<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#2}>::{closure#0}>::{closure#0}::{closure#2}> as core[2f0fa1be9e5c8a84]::iter::traits::iterator::Iterator>::fold::<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, <core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::and<()>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/iter/adapters/filter_map.rs:148:9
 107:     0x7c64a7de3fe7 - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in::<&[rustc_hir[584a46a08f82d4f5]::hir::TraitItemId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_trait_items<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#2}>::{closure#0}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:207:73
 108:     0x7c64a7de3fe7 - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::parallel_guard::<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in<&[rustc_hir[584a46a08f82d4f5]::hir::TraitItemId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_trait_items<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#2}>::{closure#0}>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:45:15
 109:     0x7c64a7de3fe7 - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::try_par_for_each_in::<&[rustc_hir[584a46a08f82d4f5]::hir::TraitItemId], rustc_span[949c7d79f35b44d4]::ErrorGuaranteed, <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_trait_items<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#2}>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:200:9
 110:     0x7c64a7de3fe7 - <rustc_middle[7f8b6a882add38a0]::hir::ModuleItems>::par_trait_items::<rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf::{closure#2}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/hir/mod.rs:88:9
 111:     0x7c64a7ce3d7a - rustc_hir_analysis[fb33a335b5053e64]::check::wfcheck::check_mod_type_wf
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/check/wfcheck.rs:2218:17
 112:     0x7c64a9e37326 - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_mod_type_wf::dynamic_query::{closure#2}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:283:9
 113:     0x7c64a9e37326 - rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::__rust_begin_short_backtrace::<rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_mod_type_wf::dynamic_query::{closure#2}::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:548:18
 114:     0x7c64aa27c04b - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_mod_type_wf::dynamic_query::{closure#2}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:622:25
 115:     0x7c64aa27c04b - <rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_mod_type_wf::dynamic_query::{closure#2} as core[2f0fa1be9e5c8a84]::ops::function::FnOnce<(rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt, rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId)>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/ops/function.rs:250:5
 116:     0x7c64a9d5d89a - <rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false> as rustc_query_system[efaf35faa88632fc]::query::config::QueryConfig<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>>::compute
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/lib.rs:110:9
 117:     0x7c64a9d5d89a - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:478:72
 118:     0x7c64a9d5d89a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:82:9
 119:     0x7c64a9d5d89a - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::try_with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:283:12
 120:     0x7c64a9d5d89a - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:260:9
 121:     0x7c64a9d5d89a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:79:9
 122:     0x7c64a9d5d89a - <rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:151:13
 123:     0x7c64a9d5d89a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context::<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:134:9
 124:     0x7c64a9d5d89a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:112:36
 125:     0x7c64a9d5d89a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context_opt::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:101:18
 126:     0x7c64a9d5d89a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:112:5
 127:     0x7c64a9d5d89a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context::<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:125:5
 128:     0x7c64a9d5d89a - <rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:136:9
 129:     0x7c64a9d5d89a - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:478:18
 130:     0x7c64a9d5d89a - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:414:9
 131:     0x7c64a9d5d89a - rustc_query_system[efaf35faa88632fc]::query::plumbing::try_execute_query::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:357:13
 132:     0x7c64aa237799 - rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:809:32
 133:     0x7c64aa237799 - stacker[5532783c75b3bb1e]::maybe_grow::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/.cargo/registry/src/index.crates.io-6f17d22bba15001f/stacker-0.1.17/src/lib.rs:55:9
 134:     0x7c64aa237799 - rustc_data_structures[9af2dff3907b6b46]::stack::ensure_sufficient_stack::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/stack.rs:21:5
 135:     0x7c64aa237799 - rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:809:5
 136:     0x7c64aa237799 - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::check_mod_type_wf::get_query_non_incr::__rust_end_short_backtrace
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:598:26
 137:     0x7c64a7e4b969 - rustc_middle[7f8b6a882add38a0]::query::plumbing::query_ensure_error_guaranteed::<rustc_query_system[efaf35faa88632fc]::query::caches::DefaultCache<rustc_span[949c7d79f35b44d4]::def_id::LocalModDefId, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:179:9
 138:     0x7c64a7e4b969 - <rustc_middle[7f8b6a882add38a0]::query::plumbing::TyCtxtEnsure>::check_mod_type_wf
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:197:9
 139:     0x7c64a7e4b969 - rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/lib.rs:164:34
 140:     0x7c64a7e4b969 - <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module::<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/hir/map/mod.rs:481:13
 141:     0x7c64a7e2e42d - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in::<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:183:34
 142:     0x7c64a7e2e42d - <core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}> as core[2f0fa1be9e5c8a84]::ops::function::FnOnce<()>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/panic/unwind_safe.rs:272:9
 143:     0x7c64a7e2e42d - std[16333f6aaad505fa]::panicking::try::do_call::<core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:557:40
 144:     0x7c64a7e2e42d - std[16333f6aaad505fa]::panicking::try::<(), core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:520:19
 145:     0x7c64a7e2e42d - std[16333f6aaad505fa]::panic::catch_unwind::<core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panic.rs:358:14
 146:     0x7c64a7e2e42d - <rustc_data_structures[9af2dff3907b6b46]::sync::parallel::ParallelGuard>::run::<(), rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#0}::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:29:9
 147:     0x7c64a7ba7d2e - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in::<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:187:21
 148:     0x7c64a7ba7d2e - <core[2f0fa1be9e5c8a84]::slice::iter::Iter<rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId> as core[2f0fa1be9e5c8a84]::iter::traits::iterator::Iterator>::for_each::<rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/slice/iter/macros.rs:254:21
 149:     0x7c64a7ba7d2e - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in::<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:186:17
 150:     0x7c64a7ba7d2e - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::parallel_guard::<(), rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:45:15
 151:     0x7c64a7ba7d2e - rustc_data_structures[9af2dff3907b6b46]::sync::parallel::enabled::par_for_each_in::<&rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId, &[rustc_hir[584a46a08f82d4f5]::hir_id::OwnerId], <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:179:9
 152:     0x7c64a7ba7d2e - <rustc_middle[7f8b6a882add38a0]::hir::map::Map>::par_for_each_module::<rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/hir/map/mod.rs:480:9
 153:     0x7c64a7ba7d2e - rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/lib.rs:163:9
 154:     0x7c64a7ba7d2e - <rustc_data_structures[9af2dff3907b6b46]::profiling::VerboseTimingGuard>::run::<(), rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/profiling.rs:753:9
 155:     0x7c64a7ba7d2e - <rustc_session[2a9706eefb3f8419]::session::Session>::time::<(), rustc_hir_analysis[fb33a335b5053e64]::check_crate::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_session/src/utils.rs:16:9
 156:     0x7c64a7a22ffb - rustc_hir_analysis[fb33a335b5053e64]::check_crate
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_hir_analysis/src/lib.rs:162:5
 157:     0x7c64a8783491 - rustc_interface[19ba7c7a4e79be54]::passes::run_required_analyses
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/passes.rs:865:5
 158:     0x7c64a8783491 - rustc_interface[19ba7c7a4e79be54]::passes::analysis
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/passes.rs:930:5
 159:     0x7c64a9e50f14 - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:283:9
 160:     0x7c64a9e50f14 - rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::__rust_begin_short_backtrace::<rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:548:18
 161:     0x7c64aa191a67 - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::analysis::dynamic_query::{closure#2}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:622:25
 162:     0x7c64aa191a67 - <rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::analysis::dynamic_query::{closure#2} as core[2f0fa1be9e5c8a84]::ops::function::FnOnce<(rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt, ())>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/ops/function.rs:250:5
 163:     0x7c64a9d0c81a - <rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false> as rustc_query_system[efaf35faa88632fc]::query::config::QueryConfig<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>>::compute
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/lib.rs:110:9
 164:     0x7c64a9d0c81a - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:478:72
 165:     0x7c64a9d0c81a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:82:9
 166:     0x7c64a9d0c81a - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::try_with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:283:12
 167:     0x7c64a9d0c81a - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:260:9
 168:     0x7c64a9d0c81a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:79:9
 169:     0x7c64a9d0c81a - <rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:151:13
 170:     0x7c64a9d0c81a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context::<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:134:9
 171:     0x7c64a9d0c81a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:112:36
 172:     0x7c64a9d0c81a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context_opt::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:101:18
 173:     0x7c64a9d0c81a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_context::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:112:5
 174:     0x7c64a9d0c81a - rustc_middle[7f8b6a882add38a0]::ty::context::tls::with_related_context::<<rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:125:5
 175:     0x7c64a9d0c81a - <rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt as rustc_query_system[efaf35faa88632fc]::query::QueryContext>::start_query::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:136:9
 176:     0x7c64a9d0c81a - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:478:18
 177:     0x7c64a9d0c81a - rustc_query_system[efaf35faa88632fc]::query::plumbing::execute_job::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:414:9
 178:     0x7c64a9d0c81a - rustc_query_system[efaf35faa88632fc]::query::plumbing::try_execute_query::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:357:13
 179:     0x7c64aa15d28f - rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:809:32
 180:     0x7c64aa15d28f - stacker[5532783c75b3bb1e]::maybe_grow::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/.cargo/registry/src/index.crates.io-6f17d22bba15001f/stacker-0.1.17/src/lib.rs:55:9
 181:     0x7c64aa15d28f - rustc_data_structures[9af2dff3907b6b46]::stack::ensure_sufficient_stack::<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>, rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/stack.rs:21:5
 182:     0x7c64aa15d28f - rustc_query_system[efaf35faa88632fc]::query::plumbing::get_query_non_incr::<rustc_query_impl[f97f1b1d2e4c44ec]::DynamicConfig<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[f97f1b1d2e4c44ec]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:809:5
 183:     0x7c64aa15d28f - rustc_query_impl[f97f1b1d2e4c44ec]::query_impl::analysis::get_query_non_incr::__rust_end_short_backtrace
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:598:26
 184:     0x7c64a759b067 - rustc_middle[7f8b6a882add38a0]::query::plumbing::query_get_at::<rustc_query_system[efaf35faa88632fc]::query::caches::SingleCache<rustc_middle[7f8b6a882add38a0]::query::erase::Erased<[u8; 1usize]>>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:143:17
 185:     0x7c64a759b067 - <rustc_middle[7f8b6a882add38a0]::query::plumbing::TyCtxtAt>::analysis
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:422:31
 186:     0x7c64a759b067 - <rustc_middle[7f8b6a882add38a0]::ty::context::TyCtxt>::analysis
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:413:35
 187:     0x7c64a759b067 - rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}::{closure#1}::{closure#5}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_driver_impl/src/lib.rs:449:52
 188:     0x7c64a759b067 - <rustc_middle[7f8b6a882add38a0]::ty::context::GlobalCtxt>::enter::<rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}::{closure#1}::{closure#5}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context.rs:1356:37
 189:     0x7c64a759b067 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<<rustc_middle[7f8b6a882add38a0]::ty::context::GlobalCtxt>::enter<rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}::{closure#1}::{closure#5}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:82:9
 190:     0x7c64a759b067 - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::try_with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<<rustc_middle[7f8b6a882add38a0]::ty::context::GlobalCtxt>::enter<rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}::{closure#1}::{closure#5}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:283:12
 191:     0x7c64a759b067 - <std[16333f6aaad505fa]::thread::local::LocalKey<core[2f0fa1be9e5c8a84]::cell::Cell<*const ()>>>::with::<rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context<<rustc_middle[7f8b6a882add38a0]::ty::context::GlobalCtxt>::enter<rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}::{closure#1}::{closure#5}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:260:9
 192:     0x7c64a759b067 - rustc_middle[7f8b6a882add38a0]::ty::context::tls::enter_context::<<rustc_middle[7f8b6a882add38a0]::ty::context::GlobalCtxt>::enter<rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}::{closure#1}::{closure#5}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:79:9
 193:     0x7c64a759b067 - <rustc_middle[7f8b6a882add38a0]::ty::context::GlobalCtxt>::enter::<rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}::{closure#1}::{closure#5}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context.rs:1356:9
 194:     0x7c64a75a7a07 - rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}::{closure#1}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_driver_impl/src/lib.rs:449:13
 195:     0x7c64a75a7a07 - <rustc_interface[19ba7c7a4e79be54]::interface::Compiler>::enter::<rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<core[2f0fa1be9e5c8a84]::option::Option<rustc_interface[19ba7c7a4e79be54]::queries::Linker>, rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/queries.rs:210:19
 196:     0x7c64a7629ff2 - rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_driver_impl/src/lib.rs:391:22
 197:     0x7c64a7629ff2 - rustc_interface[19ba7c7a4e79be54]::interface::run_compiler::<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/interface.rs:505:27
 198:     0x7c64a7629ff2 - rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals::<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/util.rs:157:13
 199:     0x7c64a7629ff2 - rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals::<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/util.rs:107:21
 200:     0x7c64a7629ff2 - <scoped_tls[b9aa433bff278e82]::ScopedKey<rustc_span[949c7d79f35b44d4]::SessionGlobals>>::set::<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs:137:9
 201:     0x7c64a76854f3 - rustc_span[949c7d79f35b44d4]::create_session_globals_then::<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_span/src/lib.rs:137:5
 202:     0x7c64a767e451 - rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals::<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/util.rs:106:17
 203:     0x7c64a767e451 - std[16333f6aaad505fa]::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:154:18
 204:     0x7c64a7639e0a - <std[16333f6aaad505fa]::thread::Builder>::spawn_unchecked_::<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/mod.rs:538:17
 205:     0x7c64a7639e0a - <core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<<std[16333f6aaad505fa]::thread::Builder>::spawn_unchecked_<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}::{closure#0}> as core[2f0fa1be9e5c8a84]::ops::function::FnOnce<()>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/panic/unwind_safe.rs:272:9
 206:     0x7c64a7639e0a - std[16333f6aaad505fa]::panicking::try::do_call::<core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<<std[16333f6aaad505fa]::thread::Builder>::spawn_unchecked_<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}::{closure#0}>, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:557:40
 207:     0x7c64a7639e0a - std[16333f6aaad505fa]::panicking::try::<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<<std[16333f6aaad505fa]::thread::Builder>::spawn_unchecked_<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}::{closure#0}>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:520:19
 208:     0x7c64a7639e0a - std[16333f6aaad505fa]::panic::catch_unwind::<core[2f0fa1be9e5c8a84]::panic::unwind_safe::AssertUnwindSafe<<std[16333f6aaad505fa]::thread::Builder>::spawn_unchecked_<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}::{closure#0}>, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panic.rs:358:14
 209:     0x7c64a7639e0a - <std[16333f6aaad505fa]::thread::Builder>::spawn_unchecked_::<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/mod.rs:537:30
 210:     0x7c64a7639e0a - <<std[16333f6aaad505fa]::thread::Builder>::spawn_unchecked_<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_with_globals<rustc_interface[19ba7c7a4e79be54]::util::run_in_thread_pool_with_globals<rustc_interface[19ba7c7a4e79be54]::interface::run_compiler<core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>, rustc_driver_impl[d53949a56cff6e47]::run_compiler::{closure#0}>::{closure#1}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[2f0fa1be9e5c8a84]::result::Result<(), rustc_span[949c7d79f35b44d4]::ErrorGuaranteed>>::{closure#1} as core[2f0fa1be9e5c8a84]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/ops/function.rs:250:5
 211:     0x7c64ab2ad754 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h7e6f1fce0ac7b6a3
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/alloc/src/boxed.rs:2454:9
 212:     0x7c64ab2ad754 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h5ceb07a5b20c5b50
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/alloc/src/boxed.rs:2454:9
 213:     0x7c64ab2ad754 - std::sys::pal::unix::thread::Thread::new::thread_start::h11f77dc606527de4
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/pal/unix/thread.rs:105:17
 214:     0x7c64a2a9ca94 - start_thread
                               at ./nptl/pthread_create.c:447:8
 215:     0x7c64a2b29c3c - clone3
                               at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:78
 216:                0x0 - <unknown>

error: the compiler unexpectedly panicked. this is a bug.

note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md

note: please make sure that you have updated to the latest nightly

note: rustc 1.84.0-dev running on x86_64-unknown-linux-gnu

query stack during panic:
#0 [explicit_item_bounds] finding item bounds for `IntFactory::stream::{opaque#0}`
#1 [check_well_formed] checking that `IntFactory::stream` is well-formed
end of query stack
error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0601`.

@matthiaskrgr matthiaskrgr added E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added. and removed E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added. labels Nov 8, 2024
@jieyouxu jieyouxu added S-has-mcve Status: A Minimal Complete and Verifiable Example has been found for this issue and removed needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Nov 11, 2024
@matthiaskrgr matthiaskrgr added the E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added. label Dec 15, 2024
@compiler-errors
Copy link
Member

This was fixed in #132047, and it doesn't need another test.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category: This is a bug. E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added. F-return_position_impl_trait_in_trait `#![feature(return_position_impl_trait_in_trait)]` F-return_type_notation `#[feature(return_type_notation)]` I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ requires-debug-assertions This issue requires a build of rustc or tooling with debug-assertions in some way S-has-mcve Status: A Minimal Complete and Verifiable Example has been found for this issue T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

4 participants