aboutsummaryrefslogtreecommitdiff
path: root/examples/zero-prio-task.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/zero-prio-task.rs')
-rw-r--r--examples/zero-prio-task.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/zero-prio-task.rs b/examples/zero-prio-task.rs
index fc38509..c810e8f 100644
--- a/examples/zero-prio-task.rs
+++ b/examples/zero-prio-task.rs
@@ -1,10 +1,14 @@
+//! examples/zero-prio-task.rs
+
#![no_main]
#![no_std]
#![feature(type_alias_impl_trait)]
+#![deny(missing_docs)]
use core::marker::PhantomData;
use panic_semihosting as _;
+/// Does not impl send
pub struct NotSend {
_0: PhantomData<*const ()>,
}