aboutsummaryrefslogtreecommitdiff
path: root/macros/ui/local-malformed-1.rs
diff options
context:
space:
mode:
authorGravatar Emil Fresk <emil.fresk@gmail.com> 2023-01-08 16:25:46 +0100
committerGravatar Henrik Tjäder <henrik@tjaders.com> 2023-03-01 00:33:27 +0100
commit584ac7e1b335411e3d923aeef92466efdc92ae50 (patch)
tree99906bccb37bfe7e852d054fb52d62e6df4290c5 /macros/ui/local-malformed-1.rs
parent9a4f97ca5ebf19e6612115db5c763d0d61dd28a1 (diff)
downloadrtic-584ac7e1b335411e3d923aeef92466efdc92ae50.tar.gz
rtic-584ac7e1b335411e3d923aeef92466efdc92ae50.tar.zst
rtic-584ac7e1b335411e3d923aeef92466efdc92ae50.zip
Update UI tests, 1 failing that needs fixing
Diffstat (limited to 'macros/ui/local-malformed-1.rs')
-rw-r--r--macros/ui/local-malformed-1.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/ui/local-malformed-1.rs b/macros/ui/local-malformed-1.rs
index 7efcd9c1..219eef54 100644
--- a/macros/ui/local-malformed-1.rs
+++ b/macros/ui/local-malformed-1.rs
@@ -9,8 +9,8 @@ mod app {
struct Local {}
#[task(local = [a:])]
- fn foo(_: foo::Context) {}
+ async fn foo(_: foo::Context) {}
#[init]
- fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {}
+ fn init(_: init::Context) -> (Shared, Local) {}
}