The following code only produces an error when the macro is used. Compilation should actually fail even if the macro is never used. ``` macro_rules! test { ($wrong:t_ty) => () } fn main() { //test!("hello world"); only causes an error if uncommented } ```