Skip to content

ICE immediate ScalarPair(..) does not fit to layout TyAndLayout #144564

@matthiaskrgr

Description

@matthiaskrgr

auto-reduced (treereduce-rust):

trait Trait<'a> {
    type Out;
}

fn weird_bound<X>() -> X
where
    for<'a> X: Trait<'a>,
    <X as Trait<'a>>::Out: Copy,
{
    todo!()
}

original:

//@ check-pass

// We normalize and check bounds before we resolve the generics
// of the function (which we know because of the return type).

trait Trait<'a> {
    type Out;
}

impl<'a, T> Trait<'static> for T {
    type Out = T;
}

fn weird_bound<X>() -> X
where
    for<'a> X: Trait<'a>,
    for<B: for<'ccx> Bar<'ccx>> <X as Trait<'a>>::Out: Copy,
{
    todo!()
}

fn main() {
    let _: () = weird_bound();
}

Version information

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

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

Program output

error[E0261]: use of undeclared lifetime name `'a`
 --> /run/user/1085/tmp/dir.cgtd3fyWjjay/rustc_testrunner_tmpdir_reporting.qUKcB7uBJIN4/mvce.rs:8:17
  |
8 |     <X as Trait<'a>>::Out: Copy,
  |                 ^^ undeclared lifetime
  |
  = note: for more information on higher-ranked polymorphism, visit https://doc.rust-lang.org/nomicon/hrtb.html
help: consider making the bound lifetime-generic with a new `'a` lifetime
  |
8 |     for<'a> <X as Trait<'a>>::Out: Copy,
  |     +++++++
help: consider introducing lifetime `'a` here
  |
5 | fn weird_bound<'a, X>() -> X
  |                +++

error[E0601]: `main` function not found in crate `mvce`
  --> /run/user/1085/tmp/dir.cgtd3fyWjjay/rustc_testrunner_tmpdir_reporting.qUKcB7uBJIN4/mvce.rs:11:2
   |
11 | }
   |  ^ consider adding a `main` function to `/run/user/1085/tmp/dir.cgtd3fyWjjay/rustc_testrunner_tmpdir_reporting.qUKcB7uBJIN4/mvce.rs`


thread 'rustc' panicked at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_const_eval/src/interpret/operand.rs:266:9:
immediate ScalarPair(alloc1<imm>, 0x0000000000000013) does not fit to layout TyAndLayout { ty: &str, layout: Layout { size: Size(8 bytes), align: AbiAlign { abi: Align(8 bytes) }, backend_repr: Scalar(Initialized { value: Pointer(AddressSpace(0)), valid_range: 1..=18446744073709551615 }), fields: Primitive, largest_niche: Some(Niche { offset: Size(0 bytes), value: Pointer(AddressSpace(0)), valid_range: 1..=18446744073709551615 }), uninhabited: false, variants: Single { index: 0 }, max_repr_align: None, unadjusted_abi_align: Align(8 bytes), randomization_seed: 281492156579847 } }
stack backtrace:
   0:     0x7a9d4ecf2ccf - std::backtrace_rs::backtrace::libunwind::trace::h5b8c747f77ac707a
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
   1:     0x7a9d4ecf2ccf - std::backtrace_rs::backtrace::trace_unsynchronized::h9b33bb3aae4c9c1a
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
   2:     0x7a9d4ecf2ccf - std::sys::backtrace::_print_fmt::h5061dc391f27cdbc
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:66:9
   3:     0x7a9d4ecf2ccf - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::h4cc2a9d90ac54071
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:39:26
   4:     0x7a9d494ffac3 - core::fmt::rt::Argument::fmt::hf7325075b5e23ef0
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/fmt/rt.rs:173:76
   5:     0x7a9d494ffac3 - core::fmt::write::he68fd2dea2152aa6
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/fmt/mod.rs:1468:25
   6:     0x7a9d4ecd3a7f - std::io::default_write_fmt::h696b8386299f2a7c
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/io/mod.rs:639:11
   7:     0x7a9d4ecd3a7f - std::io::Write::write_fmt::hccbd68607561ed1c
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/io/mod.rs:1954:13
   8:     0x7a9d4ecf3873 - std::sys::backtrace::BacktraceLock::print::he08424adb15ea5b5
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:42:9
   9:     0x7a9d4ecf3873 - std::panicking::default_hook::{{closure}}::hb4e00f2b52918190
  10:     0x7a9d4ecf367f - std::panicking::default_hook::he52edc7afde5c300
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:327:9
  11:     0x7a9d4ad27a57 - rustc_driver_impl[600452663c26aafe]::install_ice_hook::{closure#1}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_driver_impl/src/lib.rs:1422:17
  12:     0x7a9d4ad27a57 - <alloc[10846b1f06a81eec]::boxed::Box<rustc_driver_impl[600452663c26aafe]::install_ice_hook::{closure#1}> as core[3f73f8d490aa9b09]::ops::function::Fn<(&dyn for<'a, 'b> core[3f73f8d490aa9b09]::ops::function::Fn<(&'a std[e5731c54f60efa67]::panic::PanicHookInfo<'b>,), Output = ()> + core[3f73f8d490aa9b09]::marker::Send + core[3f73f8d490aa9b09]::marker::Sync, &std[e5731c54f60efa67]::panic::PanicHookInfo)>>::call
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/alloc/src/boxed.rs:1985:9
  13:     0x7a9d4ecf413e - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hcdf6bbad67d55ab4
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/alloc/src/boxed.rs:1985:9
  14:     0x7a9d4ecf413e - std::panicking::rust_panic_with_hook::hb55b64190b67c31e
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:841:13
  15:     0x7a9d4ecf3d6c - std::panicking::begin_panic_handler::{{closure}}::had143f4d57382ea1
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:706:13
  16:     0x7a9d4ecf2f29 - std::sys::backtrace::__rust_end_short_backtrace::he3664194f31b5a2e
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:174:18
  17:     0x7a9d4ecf3a0d - __rustc[b6f6af4e11d2f413]::rust_begin_unwind
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:697:5
  18:     0x7a9d494f9d90 - core::panicking::panic_fmt::hb88429f4ec746cc2
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/panicking.rs:75:14
  19:     0x7a9d4cdf86da - <rustc_const_eval[bc4a7a37e3916808]::interpret::operand::ImmTy>::from_immediate
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_const_eval/src/interpret/operand.rs:266:9
  20:     0x7a9d4cdf86da - <rustc_const_eval[bc4a7a37e3916808]::interpret::operand::OpTy>::as_mplace_or_imm
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_const_eval/src/interpret/place.rs:320:46
  21:     0x7a9d4cdf86da - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::ConstPropagator>::eval_constant
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/known_panics_lint.rs:267:14
  22:     0x7a9d4cdf91ae - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::ConstPropagator as rustc_middle[9f5312bcef468649]::mir::visit::Visitor>::visit_const_operand
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/known_panics_lint.rs:716:14
  23:     0x7a9d4cdff096 - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::ConstPropagator as rustc_middle[9f5312bcef468649]::mir::visit::Visitor>::super_operand
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/mir/visit.rs:815:30
  24:     0x7a9d4cdff096 - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::ConstPropagator as rustc_middle[9f5312bcef468649]::mir::visit::Visitor>::visit_operand
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/known_panics_lint.rs:710:14
  25:     0x7a9d4cdff096 - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::ConstPropagator as rustc_middle[9f5312bcef468649]::mir::visit::Visitor>::super_terminator
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/mir/visit.rs:555:34
  26:     0x7a9d4cdff096 - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::ConstPropagator as rustc_middle[9f5312bcef468649]::mir::visit::Visitor>::visit_terminator
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/known_panics_lint.rs:783:14
  27:     0x7a9d4ce0012b - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::ConstPropagator as rustc_middle[9f5312bcef468649]::mir::visit::Visitor>::super_basic_block_data
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/mir/visit.rs:317:26
  28:     0x7a9d4ce0012b - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::ConstPropagator as rustc_middle[9f5312bcef468649]::mir::visit::Visitor>::visit_basic_block_data
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/known_panics_lint.rs:821:14
  29:     0x7a9d4cdf8e62 - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::ConstPropagator as rustc_middle[9f5312bcef468649]::mir::visit::Visitor>::visit_body
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/known_panics_lint.rs:705:18
  30:     0x7a9d4cdf5629 - <rustc_mir_transform[36f6685a1bdcae77]::known_panics_lint::KnownPanicsLint as rustc_mir_transform[36f6685a1bdcae77]::pass_manager::MirLint>::run_lint
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/known_panics_lint.rs:57:16
  31:     0x7a9d4cf3d805 - rustc_mir_transform[36f6685a1bdcae77]::pass_manager::run_passes_inner
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/pass_manager.rs:291:22
  32:     0x7a9d4cd39c29 - rustc_mir_transform[36f6685a1bdcae77]::pass_manager::run_passes_no_validate
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/pass_manager.rs:188:5
  33:     0x7a9d4cd39c29 - rustc_mir_transform[36f6685a1bdcae77]::run_runtime_lowering_passes
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/lib.rs:622:5
  34:     0x7a9d4cd39c29 - rustc_mir_transform[36f6685a1bdcae77]::run_analysis_to_runtime_passes
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/lib.rs:567:5
  35:     0x7a9d4cd394cc - rustc_mir_transform[36f6685a1bdcae77]::mir_drops_elaborated_and_const_checked
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_mir_transform/src/lib.rs:536:5
  36:     0x7a9d4d8b7a14 - rustc_query_impl[fa18120455539428]::query_impl::mir_drops_elaborated_and_const_checked::dynamic_query::{closure#2}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:294:9
  37:     0x7a9d4d8b7a14 - rustc_query_impl[fa18120455539428]::plumbing::__rust_begin_short_backtrace::<rustc_query_impl[fa18120455539428]::query_impl::mir_drops_elaborated_and_const_checked::dynamic_query::{closure#2}::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:578:18
  38:     0x7a9d4d7d3293 - rustc_query_impl[fa18120455539428]::query_impl::mir_drops_elaborated_and_const_checked::dynamic_query::{closure#2}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:655:25
  39:     0x7a9d4d7d3293 - <rustc_query_impl[fa18120455539428]::query_impl::mir_drops_elaborated_and_const_checked::dynamic_query::{closure#2} as core[3f73f8d490aa9b09]::ops::function::FnOnce<(rustc_middle[9f5312bcef468649]::ty::context::TyCtxt, rustc_span[6407c948e9f7746]::def_id::LocalDefId)>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/ops/function.rs:253:5
  40:     0x7a9d4d71b902 - <rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false> as rustc_query_system[9238f4c84ab42928]::query::config::QueryConfig<rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>>::compute
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/lib.rs:122:9
  41:     0x7a9d4d71b902 - rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr::<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:493:72
  42:     0x7a9d4d71b902 - rustc_middle[9f5312bcef468649]::ty::context::tls::enter_context::<rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:60:9
  43:     0x7a9d4d71b902 - <std[e5731c54f60efa67]::thread::local::LocalKey<core[3f73f8d490aa9b09]::cell::Cell<*const ()>>>::try_with::<rustc_middle[9f5312bcef468649]::ty::context::tls::enter_context<rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:315:12
  44:     0x7a9d4d71b902 - <std[e5731c54f60efa67]::thread::local::LocalKey<core[3f73f8d490aa9b09]::cell::Cell<*const ()>>>::with::<rustc_middle[9f5312bcef468649]::ty::context::tls::enter_context<rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:279:20
  45:     0x7a9d4d71b902 - rustc_middle[9f5312bcef468649]::ty::context::tls::enter_context::<rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:57:9
  46:     0x7a9d4d71b902 - <rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt as rustc_query_system[9238f4c84ab42928]::query::QueryContext>::start_query::<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:161:13
  47:     0x7a9d4d71b902 - rustc_middle[9f5312bcef468649]::ty::context::tls::with_related_context::<<rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt as rustc_query_system[9238f4c84ab42928]::query::QueryContext>::start_query<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:112:9
  48:     0x7a9d4d71b902 - rustc_middle[9f5312bcef468649]::ty::context::tls::with_context::<rustc_middle[9f5312bcef468649]::ty::context::tls::with_related_context<<rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt as rustc_query_system[9238f4c84ab42928]::query::QueryContext>::start_query<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:90:36
  49:     0x7a9d4d71b902 - rustc_middle[9f5312bcef468649]::ty::context::tls::with_context_opt::<rustc_middle[9f5312bcef468649]::ty::context::tls::with_context<rustc_middle[9f5312bcef468649]::ty::context::tls::with_related_context<<rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt as rustc_query_system[9238f4c84ab42928]::query::QueryContext>::start_query<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:79:18
  50:     0x7a9d4d71b902 - rustc_middle[9f5312bcef468649]::ty::context::tls::with_context::<rustc_middle[9f5312bcef468649]::ty::context::tls::with_related_context<<rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt as rustc_query_system[9238f4c84ab42928]::query::QueryContext>::start_query<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:90:5
  51:     0x7a9d4d71b902 - rustc_middle[9f5312bcef468649]::ty::context::tls::with_related_context::<<rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt as rustc_query_system[9238f4c84ab42928]::query::QueryContext>::start_query<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}>::{closure#0}, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:103:5
  52:     0x7a9d4d71b902 - <rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt as rustc_query_system[9238f4c84ab42928]::query::QueryContext>::start_query::<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:147:9
  53:     0x7a9d4d71b902 - rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job_non_incr::<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:493:22
  54:     0x7a9d4d71b902 - rustc_query_system[9238f4c84ab42928]::query::plumbing::execute_job::<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:429:9
  55:     0x7a9d4d71b902 - rustc_query_system[9238f4c84ab42928]::query::plumbing::try_execute_query::<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt, false>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:372:13
  56:     0x7a9d4dcaf709 - rustc_query_system[9238f4c84ab42928]::query::plumbing::get_query_non_incr::<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:814:32
  57:     0x7a9d4dcaf709 - stacker[2910510742f7fb41]::maybe_grow::<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::query::plumbing::get_query_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stacker-0.1.21/src/lib.rs:57:9
  58:     0x7a9d4dcaf709 - rustc_data_structures[b4ddd2ee93272c1a]::stack::ensure_sufficient_stack::<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::query::plumbing::get_query_non_incr<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/stack.rs:21:5
  59:     0x7a9d4dcaf709 - rustc_query_system[9238f4c84ab42928]::query::plumbing::get_query_non_incr::<rustc_query_impl[fa18120455539428]::DynamicConfig<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl[fa18120455539428]::plumbing::QueryCtxt>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_system/src/query/plumbing.rs:814:5
  60:     0x7a9d4dcaf709 - rustc_query_impl[fa18120455539428]::query_impl::mir_drops_elaborated_and_const_checked::get_query_non_incr::__rust_end_short_backtrace
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_query_impl/src/plumbing.rs:631:26
  61:     0x7a9d4bdfbca0 - rustc_middle[9f5312bcef468649]::query::plumbing::query_ensure::<rustc_data_structures[b4ddd2ee93272c1a]::vec_cache::VecCache<rustc_span[6407c948e9f7746]::def_id::LocalDefId, rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 8usize]>, rustc_query_system[9238f4c84ab42928]::dep_graph::graph::DepNodeIndex>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:198:9
  62:     0x7a9d4bdfbca0 - <rustc_middle[9f5312bcef468649]::query::plumbing::TyCtxtEnsureOk>::mir_drops_elaborated_and_const_checked::<rustc_span[6407c948e9f7746]::def_id::LocalDefId>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:233:9
  63:     0x7a9d4bdfbca0 - rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/passes.rs:1094:33
  64:     0x7a9d4bdfbca0 - <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::par_hir_body_owners::<rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{closure#0}>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/hir/map.rs:340:79
  65:     0x7a9d4bde32eb - rustc_data_structures[b4ddd2ee93272c1a]::sync::parallel::par_for_each_in::<&rustc_span[6407c948e9f7746]::def_id::LocalDefId, &[rustc_span[6407c948e9f7746]::def_id::LocalDefId], <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::par_hir_body_owners<rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:181:30
  66:     0x7a9d4bde32eb - <core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[b4ddd2ee93272c1a]::sync::parallel::par_for_each_in<&rustc_span[6407c948e9f7746]::def_id::LocalDefId, &[rustc_span[6407c948e9f7746]::def_id::LocalDefId], <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::par_hir_body_owners<rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}> as core[3f73f8d490aa9b09]::ops::function::FnOnce<()>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/panic/unwind_safe.rs:272:9
  67:     0x7a9d4bde32eb - std[e5731c54f60efa67]::panicking::catch_unwind::do_call::<core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[b4ddd2ee93272c1a]::sync::parallel::par_for_each_in<&rustc_span[6407c948e9f7746]::def_id::LocalDefId, &[rustc_span[6407c948e9f7746]::def_id::LocalDefId], <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::par_hir_body_owners<rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:589:40
  68:     0x7a9d4bde32eb - std[e5731c54f60efa67]::panicking::catch_unwind::<(), core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[b4ddd2ee93272c1a]::sync::parallel::par_for_each_in<&rustc_span[6407c948e9f7746]::def_id::LocalDefId, &[rustc_span[6407c948e9f7746]::def_id::LocalDefId], <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::par_hir_body_owners<rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:552:19
  69:     0x7a9d4bde32eb - std[e5731c54f60efa67]::panic::catch_unwind::<core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<rustc_data_structures[b4ddd2ee93272c1a]::sync::parallel::par_for_each_in<&rustc_span[6407c948e9f7746]::def_id::LocalDefId, &[rustc_span[6407c948e9f7746]::def_id::LocalDefId], <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::par_hir_body_owners<rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panic.rs:359:14
  70:     0x7a9d4bde32eb - <rustc_data_structures[b4ddd2ee93272c1a]::sync::parallel::ParallelGuard>::run::<(), rustc_data_structures[b4ddd2ee93272c1a]::sync::parallel::par_for_each_in<&rustc_span[6407c948e9f7746]::def_id::LocalDefId, &[rustc_span[6407c948e9f7746]::def_id::LocalDefId], <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::par_hir_body_owners<rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_data_structures/src/sync/parallel.rs:23:9
  71:     0x7a9d4bde32eb - rustc_data_structures[b4ddd2ee93272c1a]::sync::parallel::par_for_each_in::<&rustc_span[6407c948e9f7746]::def_id::LocalDefId, &[rustc_span[6407c948e9f7746]::def_id::LocalDefId], <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::par_hir_body_owners<rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{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:181:23
  72:     0x7a9d4bde32eb - <core[3f73f8d490aa9b09]::slice::iter::Iter<rustc_span[6407c948e9f7746]::def_id::LocalDefId> as core[3f73f8d490aa9b09]::iter::traits::iterator::Iterator>::for_each::<rustc_data_structures[b4ddd2ee93272c1a]::sync::parallel::par_for_each_in<&rustc_span[6407c948e9f7746]::def_id::LocalDefId, &[rustc_span[6407c948e9f7746]::def_id::LocalDefId], <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::par_hir_body_owners<rustc_interface[24af5f9c45a46fad]::passes::run_required_analyses::{closure#1}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/slice/iter/macros.rs:277:21

< snip > 

 106:     0x7a9d4da2f279 - rustc_query_impl[fa18120455539428]::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:631:26
 107:     0x7a9d4aca936e - rustc_middle[9f5312bcef468649]::query::plumbing::query_ensure::<rustc_query_system[9238f4c84ab42928]::query::caches::SingleCache<rustc_middle[9f5312bcef468649]::query::erase::Erased<[u8; 0usize]>>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:198:9
 108:     0x7a9d4aca936e - <rustc_middle[9f5312bcef468649]::query::plumbing::TyCtxtEnsureOk>::analysis
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/query/plumbing.rs:233:9
 109:     0x7a9d4aca936e - rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_driver_impl/src/lib.rs:370:29
 110:     0x7a9d4aca936e - rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt::<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/passes.rs:1006:27
 111:     0x7a9d4aca936e - <rustc_middle[9f5312bcef468649]::ty::context::GlobalCtxt>::enter::<rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2}::{closure#0}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>::{closure#1}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context.rs:1549:37
 112:     0x7a9d4aca936e - rustc_middle[9f5312bcef468649]::ty::context::tls::enter_context::<<rustc_middle[9f5312bcef468649]::ty::context::GlobalCtxt>::enter<rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2}::{closure#0}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>::{closure#1}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:60:9
 113:     0x7a9d4aca936e - <std[e5731c54f60efa67]::thread::local::LocalKey<core[3f73f8d490aa9b09]::cell::Cell<*const ()>>>::try_with::<rustc_middle[9f5312bcef468649]::ty::context::tls::enter_context<<rustc_middle[9f5312bcef468649]::ty::context::GlobalCtxt>::enter<rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2}::{closure#0}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>::{closure#1}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>::{closure#0}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:315:12
 114:     0x7a9d4aca936e - <std[e5731c54f60efa67]::thread::local::LocalKey<core[3f73f8d490aa9b09]::cell::Cell<*const ()>>>::with::<rustc_middle[9f5312bcef468649]::ty::context::tls::enter_context<<rustc_middle[9f5312bcef468649]::ty::context::GlobalCtxt>::enter<rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2}::{closure#0}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>::{closure#1}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>::{closure#0}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/local.rs:279:20
 115:     0x7a9d4ad2ab23 - rustc_middle[9f5312bcef468649]::ty::context::tls::enter_context::<<rustc_middle[9f5312bcef468649]::ty::context::GlobalCtxt>::enter<rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2}::{closure#0}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>::{closure#1}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context/tls.rs:57:9
 116:     0x7a9d4ad2ab23 - <rustc_middle[9f5312bcef468649]::ty::context::GlobalCtxt>::enter::<rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2}::{closure#0}, core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context.rs:1549:9
 117:     0x7a9d4ad2ab23 - <rustc_middle[9f5312bcef468649]::ty::context::TyCtxt>::create_global_ctxt::<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2}::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_middle/src/ty/context.rs:1754:13
 118:     0x7a9d4aca6df6 - rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt::<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/passes.rs:973:9
 119:     0x7a9d4aca6df6 - <rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>::{closure#2} as core[3f73f8d490aa9b09]::ops::function::FnOnce<(&rustc_session[2679dc4d0488641f]::session::Session, rustc_middle[9f5312bcef468649]::ty::context::CurrentGcx, alloc[10846b1f06a81eec]::sync::Arc<rustc_data_structures[b4ddd2ee93272c1a]::jobserver::Proxy>, &std[e5731c54f60efa67]::sync::once_lock::OnceLock<rustc_middle[9f5312bcef468649]::ty::context::GlobalCtxt>, &rustc_data_structures[b4ddd2ee93272c1a]::sync::worker_local::WorkerLocal<rustc_middle[9f5312bcef468649]::arena::Arena>, &rustc_data_structures[b4ddd2ee93272c1a]::sync::worker_local::WorkerLocal<rustc_hir[b42bdf266103fca1]::Arena>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2})>>::call_once::{shim:vtable#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/ops/function.rs:253:5
 120:     0x7a9d4ac8e30c - <alloc[10846b1f06a81eec]::boxed::Box<dyn for<'a> core[3f73f8d490aa9b09]::ops::function::FnOnce<(&'a rustc_session[2679dc4d0488641f]::session::Session, rustc_middle[9f5312bcef468649]::ty::context::CurrentGcx, alloc[10846b1f06a81eec]::sync::Arc<rustc_data_structures[b4ddd2ee93272c1a]::jobserver::Proxy>, &'a std[e5731c54f60efa67]::sync::once_lock::OnceLock<rustc_middle[9f5312bcef468649]::ty::context::GlobalCtxt<'a>>, &'a rustc_data_structures[b4ddd2ee93272c1a]::sync::worker_local::WorkerLocal<rustc_middle[9f5312bcef468649]::arena::Arena<'a>>, &'a rustc_data_structures[b4ddd2ee93272c1a]::sync::worker_local::WorkerLocal<rustc_hir[b42bdf266103fca1]::Arena<'a>>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}), Output = core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>>> as core[3f73f8d490aa9b09]::ops::function::FnOnce<(&rustc_session[2679dc4d0488641f]::session::Session, rustc_middle[9f5312bcef468649]::ty::context::CurrentGcx, alloc[10846b1f06a81eec]::sync::Arc<rustc_data_structures[b4ddd2ee93272c1a]::jobserver::Proxy>, &std[e5731c54f60efa67]::sync::once_lock::OnceLock<rustc_middle[9f5312bcef468649]::ty::context::GlobalCtxt>, &rustc_data_structures[b4ddd2ee93272c1a]::sync::worker_local::WorkerLocal<rustc_middle[9f5312bcef468649]::arena::Arena>, &rustc_data_structures[b4ddd2ee93272c1a]::sync::worker_local::WorkerLocal<rustc_hir[b42bdf266103fca1]::Arena>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2})>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/alloc/src/boxed.rs:1971:9
 121:     0x7a9d4ac8e30c - rustc_interface[24af5f9c45a46fad]::passes::create_and_enter_global_ctxt::<core[3f73f8d490aa9b09]::option::Option<rustc_interface[24af5f9c45a46fad]::queries::Linker>, rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}::{closure#2}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/passes.rs:1014:5
 122:     0x7a9d4ad4616d - rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_driver_impl/src/lib.rs:343:22
 123:     0x7a9d4ad4616d - rustc_interface[24af5f9c45a46fad]::interface::run_compiler::<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/interface.rs:525:80
 124:     0x7a9d4ad4616d - <core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}::{closure#0}> as core[3f73f8d490aa9b09]::ops::function::FnOnce<()>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/panic/unwind_safe.rs:272:9
 125:     0x7a9d4ad4616d - std[e5731c54f60efa67]::panicking::catch_unwind::do_call::<core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}::{closure#0}>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:589:40
 126:     0x7a9d4ad4616d - std[e5731c54f60efa67]::panicking::catch_unwind::<(), core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}::{closure#0}>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:552:19
 127:     0x7a9d4ad4616d - std[e5731c54f60efa67]::panic::catch_unwind::<core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}::{closure#0}>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panic.rs:359:14
 128:     0x7a9d4ad4616d - rustc_interface[24af5f9c45a46fad]::interface::run_compiler::<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/interface.rs:525:23
 129:     0x7a9d4ad4616d - rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals::<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/util.rs:199:17
 130:     0x7a9d4ad4616d - rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals::<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/util.rs:153:24
 131:     0x7a9d4ad4616d - <scoped_tls[4b5368adfaa32d8e]::ScopedKey<rustc_span[6407c948e9f7746]::SessionGlobals>>::set::<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}::{closure#0}, ()>
                               at /home/gh-matthiaskrgr/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scoped-tls-1.0.1/src/lib.rs:137:9
 132:     0x7a9d4acb6c00 - rustc_span[6407c948e9f7746]::create_session_globals_then::<(), rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}::{closure#0}>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_span/src/lib.rs:145:21
 133:     0x7a9d4acb6c00 - rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals::<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_interface/src/util.rs:149:17
 134:     0x7a9d4acb6c00 - std[e5731c54f60efa67]::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/backtrace.rs:158:18
 135:     0x7a9d4acdd0d7 - <std[e5731c54f60efa67]::thread::Builder>::spawn_unchecked_::<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()>::{closure#1}::{closure#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/mod.rs:559:17
 136:     0x7a9d4acdd0d7 - <core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<<std[e5731c54f60efa67]::thread::Builder>::spawn_unchecked_<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()>::{closure#1}::{closure#0}> as core[3f73f8d490aa9b09]::ops::function::FnOnce<()>>::call_once
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/panic/unwind_safe.rs:272:9
 137:     0x7a9d4acdd0d7 - std[e5731c54f60efa67]::panicking::catch_unwind::do_call::<core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<<std[e5731c54f60efa67]::thread::Builder>::spawn_unchecked_<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()>::{closure#1}::{closure#0}>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:589:40
 138:     0x7a9d4acdd0d7 - std[e5731c54f60efa67]::panicking::catch_unwind::<(), core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<<std[e5731c54f60efa67]::thread::Builder>::spawn_unchecked_<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()>::{closure#1}::{closure#0}>>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panicking.rs:552:19
 139:     0x7a9d4acdd0d7 - std[e5731c54f60efa67]::panic::catch_unwind::<core[3f73f8d490aa9b09]::panic::unwind_safe::AssertUnwindSafe<<std[e5731c54f60efa67]::thread::Builder>::spawn_unchecked_<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()>::{closure#1}::{closure#0}>, ()>
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/panic.rs:359:14
 140:     0x7a9d4acdd0d7 - <std[e5731c54f60efa67]::thread::Builder>::spawn_unchecked_::<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()>::{closure#1}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/thread/mod.rs:557:30
 141:     0x7a9d4acdd0d7 - <<std[e5731c54f60efa67]::thread::Builder>::spawn_unchecked_<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_with_globals<rustc_interface[24af5f9c45a46fad]::util::run_in_thread_pool_with_globals<rustc_interface[24af5f9c45a46fad]::interface::run_compiler<(), rustc_driver_impl[600452663c26aafe]::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()>::{closure#1} as core[3f73f8d490aa9b09]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/core/src/ops/function.rs:253:5
 142:     0x7a9d4ed2acc0 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::hbff8a86eae5619c2
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/alloc/src/boxed.rs:1971:9
 143:     0x7a9d4ed2acc0 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h54ef384e1bff33e0
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/alloc/src/boxed.rs:1971:9
 144:     0x7a9d4ecbcdb5 - std::sys::pal::unix::thread::Thread::new::thread_start::hfbc4fdd72b951f81
                               at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/library/std/src/sys/pal/unix/thread.rs:97:17
 145:     0x7a9d45a9caa4 - start_thread
                               at ./nptl/pthread_create.c:447:8
 146:     0x7a9d45b29c3c - clone3
                               at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:78:0
 147:                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.90.0-dev running on x86_64-unknown-linux-gnu

query stack during panic:
#0 [mir_drops_elaborated_and_const_checked] elaborating drops for `weird_bound`
#1 [analysis] running analysis passes on this crate
end of query stack
error: aborting due to 2 previous errors

Some errors have detailed explanations: E0261, E0601.
For more information about an error, try `rustc --explain E0261`.

Metadata

Metadata

Assignees

No one assigned

    Labels

    C-bugCategory: This is a bug.I-ICEIssue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.needs-triageThis issue may need triage. Remove it if it has been sufficiently triaged.requires-debug-assertionsThis issue requires a build of rustc or tooling with debug-assertions in some way

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions