mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-27 09:12:00 +00:00
Prior to this patch, the default panic message (resulting from calling `panic_any(42);` for example), would print the following error message: ``` thread 'main' panicked at 'Box<Any>', ... ``` However, this should be `Box<dyn Any>` instead.