diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-01-08 16:25:46 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:33:27 +0100 |
| commit | 584ac7e1b335411e3d923aeef92466efdc92ae50 (patch) | |
| tree | 99906bccb37bfe7e852d054fb52d62e6df4290c5 /macros/ui/local-collision.rs | |
| parent | 9a4f97ca5ebf19e6612115db5c763d0d61dd28a1 (diff) | |
Update UI tests, 1 failing that needs fixing
Diffstat (limited to 'macros/ui/local-collision.rs')
| -rw-r--r-- | macros/ui/local-collision.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macros/ui/local-collision.rs b/macros/ui/local-collision.rs index 7dbe976..0e4eef7 100644 --- a/macros/ui/local-collision.rs +++ b/macros/ui/local-collision.rs @@ -11,11 +11,11 @@ mod app { } #[task(local = [a])] - fn foo(_: foo::Context) {} + async fn foo(_: foo::Context) {} #[task(local = [a: u8 = 3])] - fn bar(_: bar::Context) {} + async fn bar(_: bar::Context) {} #[init] - fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {} + fn init(_: init::Context) -> (Shared, Local) {} } |
