diff options
author | 2017-12-09 15:12:42 +0100 | |
---|---|---|
committer | 2017-12-09 15:12:42 +0100 | |
commit | 8f23fdc9340167cf9d6d31a09705369c3b8acccb (patch) | |
tree | cbb2d2bae907001afc24fe90db0ee2e104bf8aca /examples/full-syntax.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/full-syntax.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/full-syntax.rs b/examples/full-syntax.rs index 9b6b394e..a8f79a72 100644 --- a/examples/full-syntax.rs +++ b/examples/full-syntax.rs @@ -1,5 +1,6 @@ //! A showcase of the `app!` macro syntax #![deny(unsafe_code)] +#![deny(warnings)] #![feature(proc_macro)] #![no_std] |