aboutsummaryrefslogtreecommitdiff
path: root/examples/late-resources.rs
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2017-12-09 15:12:42 +0100
committerJorge Aparicio <jorge@japaric.io>2017-12-09 15:12:42 +0100
commit8f23fdc9340167cf9d6d31a09705369c3b8acccb (patch)
treecbb2d2bae907001afc24fe90db0ee2e104bf8aca /examples/late-resources.rs
parent9865a7246df289bfa5f65ba47c883c4ce3e108a9 (diff)
deny warnings and unsafe code in tests and examples
Diffstat (limited to 'examples/late-resources.rs')
-rw-r--r--examples/late-resources.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/late-resources.rs b/examples/late-resources.rs
index 69a0ce8..d42431c 100644
--- a/examples/late-resources.rs
+++ b/examples/late-resources.rs
@@ -1,6 +1,7 @@
//! Demonstrates initialization of resources in `init`.
#![deny(unsafe_code)]
+#![deny(warnings)]
#![feature(proc_macro)]
#![no_std]