aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail/init-resource-share-idle.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cfail/init-resource-share-idle.rs')
-rw-r--r--tests/cfail/init-resource-share-idle.rs30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/cfail/init-resource-share-idle.rs b/tests/cfail/init-resource-share-idle.rs
deleted file mode 100644
index 5b29f30..0000000
--- a/tests/cfail/init-resource-share-idle.rs
+++ /dev/null
@@ -1,30 +0,0 @@
-#![deny(warnings)]
-#![no_std]
-
-extern crate cortex_m_rtfm as rtfm;
-extern crate stm32f103xx;
-
-use rtfm::app;
-
-app! { //~ proc macro panicked
- device: stm32f103xx,
-
- resources: {
- static BUFFER: [u8; 16] = [0; 16];
- },
-
- init: {
- resources: [BUFFER],
- },
-
- idle: {
- resources: [BUFFER],
- //~^ error: this resource is owned by `init` and can't be shared
- },
-}
-
-fn init(_p: init::Peripherals, _r: init::Resources) {}
-
-fn idle(_r: init::Resources) -> ! {
- loop {}
-}