Closed
Description
warning: use of deprecated attribute `panic_implementation`: This attribute was renamed to `panic_handler`. See https://github.com/rust-lang/rust/issues/44489#issuecomment-415140224
--> test.rs:13:1
|
13 | #[panic_implementation]
| ^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute
|
= note: #[warn(deprecated)] on by default
Namely,
| ^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute
will not help at all in resolving the issue. The help
should either not exist at all or suggest replacement to #[panic_handler]
(moving the suggestion from the warning itself).