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

7 lines
115 B
Rust

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