diff options
author | 2017-12-09 15:12:42 +0100 | |
---|---|---|
committer | 2017-12-09 15:12:42 +0100 | |
commit | 8f23fdc9340167cf9d6d31a09705369c3b8acccb (patch) | |
tree | cbb2d2bae907001afc24fe90db0ee2e104bf8aca /examples/nested.rs | |
parent | 9865a7246df289bfa5f65ba47c883c4ce3e108a9 (diff) | |
download | rtic-8f23fdc9340167cf9d6d31a09705369c3b8acccb.tar.gz rtic-8f23fdc9340167cf9d6d31a09705369c3b8acccb.tar.zst rtic-8f23fdc9340167cf9d6d31a09705369c3b8acccb.zip |
deny warnings and unsafe code in tests and examples
Diffstat (limited to '')
-rw-r--r-- | examples/nested.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/nested.rs b/examples/nested.rs index 1c164f86..d2309f3d 100644 --- a/examples/nested.rs +++ b/examples/nested.rs @@ -3,6 +3,7 @@ //! If you run this program you'll hit the breakpoints as indicated by the //! letters in the comments: A, then B, then C, etc. #![deny(unsafe_code)] +#![deny(warnings)] #![feature(proc_macro)] #![no_std] |