diff options
author | 2017-12-09 14:26:38 +0000 | |
---|---|---|
committer | 2017-12-09 14:26:38 +0000 | |
commit | 40ebb93cc6ec8533d4532853c3fd01693af09d8e (patch) | |
tree | 2a452f6e7d7d02bc9d17494554f04afcab8efd63 /examples/nested.rs | |
parent | 0a0e0e2b382d826ac7b423c91f39d2abf91a010f (diff) | |
parent | d6c240f9743067c81e68adcf35c60304573db8b9 (diff) | |
download | rtic-40ebb93cc6ec8533d4532853c3fd01693af09d8e.tar.gz rtic-40ebb93cc6ec8533d4532853c3fd01693af09d8e.tar.zst rtic-40ebb93cc6ec8533d4532853c3fd01693af09d8e.zip |
Auto merge of #56 - japaric:not-send, r=japaric
make resource proxies !Send
None
Diffstat (limited to 'examples/nested.rs')
-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] |