Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Default panic message should print Box<dyn Any>
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.
- Loading branch information