if this is allowed ```rust #[interrupt(pac::interrupt::USART0)] fn blah() {} ``` then it very strongly feels to me that this should be allowed ```rust use pac::interrupt::USART0; #[interrupt(USART0)] fn blah() {} ``` but we can't allow that, to prevent the user from renaming the variant