diff options
author | 2023-01-19 13:56:59 +0100 | |
---|---|---|
committer | 2023-03-01 00:33:30 +0100 | |
commit | b8b881f446a226d6f3c4a7db7c9174590b47dbf6 (patch) | |
tree | cf74ac7f716c0206df9c5dc4c7a2c1a5893aaddc /examples/t-late-not-send.rs | |
parent | 4601782466c518d313ba79d9437bf7a3f8dbbf76 (diff) | |
download | rtic-b8b881f446a226d6f3c4a7db7c9174590b47dbf6.tar.gz rtic-b8b881f446a226d6f3c4a7db7c9174590b47dbf6.tar.zst rtic-b8b881f446a226d6f3c4a7db7c9174590b47dbf6.zip |
Fix so deny(missing_docs) work
Diffstat (limited to 'examples/t-late-not-send.rs')
-rw-r--r-- | examples/t-late-not-send.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/t-late-not-send.rs b/examples/t-late-not-send.rs index 0fbf237b..44d1d855 100644 --- a/examples/t-late-not-send.rs +++ b/examples/t-late-not-send.rs @@ -2,11 +2,12 @@ #![no_main] #![no_std] +#![deny(missing_docs)] use core::marker::PhantomData; - use panic_semihosting as _; +/// Not send pub struct NotSend { _0: PhantomData<*const ()>, } |