fix: add the HELP message

This commit is contained in:
Jaiden Magnan
2026-01-14 11:32:24 -05:00
parent da133533ed
commit 53f0ce84b2
@@ -8,4 +8,5 @@ enum Priority {
fn main() {
let priority = &Priority::Normal;
let priority = priority as u8; //~ ERROR casting `&Priority` as `u8` is invalid
//~| HELP: dereference the expression
}