rtic/macros/ui/task-divergent.rs
Emil Fresk 7614b96fe4 RTIC v2: Initial commit
rtic-syntax is now part of RTIC repository
2023-03-01 00:29:10 +01:00

9 lines
134 B
Rust

#![no_main]
#[rtic_macros::mock_app(device = mock)]
mod app {
#[task]
fn foo(_: foo::Context) -> ! {
loop {}
}
}