diff options
Diffstat (limited to 'macros/ui/task-double-shared.rs')
-rw-r--r-- | macros/ui/task-double-shared.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/ui/task-double-shared.rs b/macros/ui/task-double-shared.rs index 3b4d4115..f9812d39 100644 --- a/macros/ui/task-double-shared.rs +++ b/macros/ui/task-double-shared.rs @@ -3,5 +3,5 @@ #[rtic_macros::mock_app(device = mock)] mod app { #[task(shared = [A], shared = [B])] - fn foo(_: foo::Context) {} + async fn foo(_: foo::Context) {} } |