Closed
Description
cargo --version
: cargo 1.29.0-nightly (0ec7281b9 2018-08-20)
rustc --version
: rustc 1.30.0-nightly (fc81e3624 2018-09-07)
Steps to reproduce:
$ git clone https://gitlab.com/objrs/objrs.git
$ cd objrs
$ cargo +nightly build
This is failing when the objrs
crate attempts to import the objrs_macros
crate (which is a proc-macro
crate). That is, if I modify objrs
's lib.rs
file to only contain:
extern crate objrs_macros;
rustc will ICE.
Backtrace:
$ RUST_BACKTRACE=1 cargo +nightly build
Compiling objrs v0.0.1 (file:///private/tmp/objrs)
thread 'main' panicked at 'index out of bounds: the len is 1 but the index is 150', /Users/travis/build/rust-lang/rust/src/libcore/slice/mod.rs:2046:10
stack backtrace:
0: std::sys::unix::backtrace::tracing::imp::unwind_backtrace
1: std::sys_common::backtrace::print
2: std::panicking::default_hook::{{closure}}
3: std::panicking::default_hook
4: rustc::util::common::panic_hook
5: std::panicking::rust_panic_with_hook
6: std::panicking::continue_panic_fmt
7: rust_begin_unwind
8: core::panicking::panic_fmt
9: core::panicking::panic_bounds_check
10: rustc_metadata::cstore_impl::<impl rustc::middle::cstore::CrateStore for rustc_metadata::cstore::CStore>::def_path_hash
11: <[T] as rustc_data_structures::stable_hasher::HashStable<CTX>>::hash_stable
12: rustc::dep_graph::graph::DepGraph::with_task_impl
13: rustc::ty::context::tls::with_related_context
14: rustc::ty::query::plumbing::<impl rustc::ty::context::TyCtxt<'a, 'gcx, 'tcx>>::force_query_with_job
15: rustc::ty::query::plumbing::<impl rustc::ty::context::TyCtxt<'a, 'gcx, 'tcx>>::get_query
16: rustc_codegen_llvm::base::<impl rustc_codegen_llvm::CrateInfo>::new
17: rustc_codegen_llvm::back::write::start_async_codegen
18: rustc_codegen_llvm::base::codegen_crate
19: <rustc_codegen_llvm::LlvmCodegenBackend as rustc_codegen_utils::codegen_backend::CodegenBackend>::codegen_crate
20: rustc::util::common::time
21: rustc_driver::driver::phase_4_codegen
22: rustc_driver::driver::compile_input::{{closure}}
23: rustc::ty::context::tls::enter_context
24: <std::thread::local::LocalKey<T>>::with
25: rustc::ty::context::TyCtxt::create_and_enter
26: rustc_driver::driver::compile_input
27: rustc_driver::run_compiler_with_pool
28: <scoped_tls::ScopedKey<T>>::set
29: rustc_driver::run_compiler
30: syntax::with_globals
31: __rust_maybe_catch_panic
32: rustc_driver::run
33: rustc_driver::main
34: std::rt::lang_start::{{closure}}
35: std::panicking::try::do_call
36: __rust_maybe_catch_panic
37: std::rt::lang_start_internal
38: main
query stack during panic:
#0 [native_libraries] looking up the native libraries of a linked crate
end of query stack
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: rustc 1.30.0-nightly (fc81e3624 2018-09-07) running on x86_64-apple-darwin
note: compiler flags: -C debuginfo=2 -C incremental --crate-type lib
note: some of the compiler flags provided by cargo are hidden
error: Could not compile `objrs`.
To learn more, run the command again with --verbose.