summaryrefslogtreecommitdiff
path: root/exercises/10_modules
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/10_modules')
-rw-r--r--exercises/10_modules/modules2.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/exercises/10_modules/modules2.rs b/exercises/10_modules/modules2.rs
index 782a70e..02eb80a 100644
--- a/exercises/10_modules/modules2.rs
+++ b/exercises/10_modules/modules2.rs
@@ -1,6 +1,7 @@
// You can bring module paths into scopes and provide new names for them with
// the `use` and `as` keywords.
+#[allow(dead_code)]
mod delicious_snacks {
// TODO: Add the following two `use` statements after fixing them.
// use self::fruits::PEAR as ???;