diff --git a/exercises/09_ambiguity_and_ordering/main.rs b/exercises/09_ambiguity_and_ordering/main.rs index 23581e7..64791b4 100644 --- a/exercises/09_ambiguity_and_ordering/main.rs +++ b/exercises/09_ambiguity_and_ordering/main.rs @@ -3,6 +3,7 @@ /// This enum should represent what code the user wrote exactly. /// Even though to a compiled program there's no difference, /// this will let the program tell what sort of code the user wrote. +#[allow(unused)] #[derive(Debug)] enum NumberType { /// The user wrote a literal, positive number.