rust/library
Camelid d37e1e186e Qualify panic! as core::panic! in non-built-in core macros
Otherwise code like this

    #![no_implicit_prelude]

    fn main() {
        ::std::todo!();
        ::std::unimplemented!();
    }

will fail to compile, which is unfortunate and presumably unintended.

This changes many invocations of `panic!` in a `macro_rules!` definition
to invocations of `$crate::panic!`, which makes the invocations hygienic.

Note that this does not make the built-in macro `assert!` hygienic.
2020-11-23 11:28:25 -08:00
..
alloc Auto merge of #79219 - shepmaster:beta-bump, r=Mark-Simulacrum 2020-11-22 21:38:03 +00:00
backtrace@af078ecc0b std: Update the backtrace crate submodule 2020-11-20 11:56:07 -08:00
core Qualify panic! as core::panic! in non-built-in core macros 2020-11-23 11:28:25 -08:00
panic_abort
panic_unwind Fix even more URLs 2020-11-05 20:11:29 +01:00
proc_macro Bump bootstrap compiler version 2020-11-19 19:23:36 -05:00
profiler_builtins
rtstartup
rustc-std-workspace-alloc
rustc-std-workspace-core
rustc-std-workspace-std
std Auto merge of #79219 - shepmaster:beta-bump, r=Mark-Simulacrum 2020-11-22 21:38:03 +00:00
stdarch@777efaf564 Enable AVX512 *epi64 variants by updating stdarch 2020-11-17 11:50:52 +01:00
term
test Rollup merge of #79090 - hermitcore:builtins, r=Mark-Simulacrum 2020-11-19 16:26:23 +01:00
unwind allow using the system-wide llvm-libunwind as the unwinder 2020-10-21 14:45:58 +02:00