mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
18 lines
567 B
Text
18 lines
567 B
Text
|
error: Local resource "a" is used by multiple tasks or collides with multiple definitions
|
||
|
--> $DIR/local-collision-2.rs:10:9
|
||
|
|
|
||
|
10 | a: u32,
|
||
|
| ^
|
||
|
|
||
|
error: Local resource "a" is used by multiple tasks or collides with multiple definitions
|
||
|
--> $DIR/local-collision-2.rs:18:21
|
||
|
|
|
||
|
18 | #[init(local = [a: u16 = 2])]
|
||
|
| ^
|
||
|
|
||
|
error: Local resource "a" is used by multiple tasks or collides with multiple definitions
|
||
|
--> $DIR/local-collision-2.rs:15:21
|
||
|
|
|
||
|
15 | #[task(local = [a: u8 = 3])]
|
||
|
| ^
|