mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 12:42:52 +01:00
15 lines
209 B
Rust
15 lines
209 B
Rust
|
#![no_main]
|
||
|
|
||
|
#[rtic_macros::mock_app(device = mock)]
|
||
|
mod app {
|
||
|
#[task(local = [
|
||
|
#[test]
|
||
|
a: u32 = 0, // Ok
|
||
|
#[test]
|
||
|
b, // Error
|
||
|
])]
|
||
|
fn foo(_: foo::Context) {
|
||
|
|
||
|
}
|
||
|
}
|