rtic/rtic-macros/ui/local-collision.rs
2023-03-01 00:35:13 +01:00

21 lines
354 B
Rust

#![no_main]
#[rtic_macros::mock_app(device = mock)]
mod app {
#[shared]
struct Shared {}
#[local]
struct Local {
a: u32,
}
#[task(local = [a])]
async fn foo(_: foo::Context) {}
#[task(local = [a: u8 = 3])]
async fn bar(_: bar::Context) {}
#[init]
fn init(_: init::Context) -> (Shared, Local) {}
}