aboutsummaryrefslogtreecommitdiff
path: root/rtic-macros/ui/task-divergent.rs
diff options
context:
space:
mode:
authorOleksandr Babak <alexanderbabak@proton.me>2025-03-22 12:25:45 +0100
committerEmil Fresk <emil.fresk@gmail.com>2025-03-27 14:47:11 +0000
commit0593a7290bcc5f134a7c3a33f0431979cf4f0121 (patch)
treea2b27bc9e90cedbcb14058d3b009e4700de2118f /rtic-macros/ui/task-divergent.rs
parent78e9127fc53f7fa3dfe2f66705426b78f106daa0 (diff)
chore: update tests
Diffstat (limited to 'rtic-macros/ui/task-divergent.rs')
-rw-r--r--rtic-macros/ui/task-divergent.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/rtic-macros/ui/task-divergent.rs b/rtic-macros/ui/task-divergent.rs
deleted file mode 100644
index ffe2dc0..0000000
--- a/rtic-macros/ui/task-divergent.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-#![no_main]
-
-#[rtic_macros::mock_app(device = mock)]
-mod app {
- #[task]
- async fn foo(_: foo::Context) -> ! {
- loop {}
- }
-}