mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-02 08:16:07 +03:00
eb3fd6d208
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.