rtic/macros/ui/local-shared-attribute.rs

15 lines
209 B
Rust
Raw Normal View History

#![no_main]
#[rtic_macros::mock_app(device = mock)]
mod app {
#[task(local = [
#[test]
a: u32 = 0, // Ok
#[test]
b, // Error
])]
fn foo(_: foo::Context) {
}
}