Allow dead_code in a test

rustc seems to have some changes with the `dead_code` lints which affect this.
This commit is contained in:
Waffle Maybe 2024-07-30 09:18:19 +02:00 committed by GitHub
parent 6f1b48ca92
commit 6a299f6012
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -583,5 +583,6 @@ fn custom_result() {
type Result = ();
#[derive(BotCommands, Debug, PartialEq)]
#[allow(dead_code)]
enum DefaultCommands {}
}