rtic/macros/ui/task-double-local.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
134 B
Rust

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