mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 12:42:52 +01:00
4c2c05a801
rtic-syntax is now part of RTIC repository
17 lines
567 B
Text
17 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])]
|
|
| ^
|