aboutsummaryrefslogtreecommitdiff
path: root/ui/extern-interrupt-not-enough.rs
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2023-01-08 21:33:44 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-01 00:33:29 +0100
commit95e494968053a17ac05a0c1cec9d8b2c7d450296 (patch)
treea6655592245aa0dc85c75d8a3bd37082a1766dc8 /ui/extern-interrupt-not-enough.rs
parentc40c89bb4edc22c4a60d8677c660a9ab7eb47e92 (diff)
Start CI, disable docs building
Diffstat (limited to 'ui/extern-interrupt-not-enough.rs')
-rw-r--r--ui/extern-interrupt-not-enough.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/extern-interrupt-not-enough.rs b/ui/extern-interrupt-not-enough.rs
index 1dbe923..94c8ee1 100644
--- a/ui/extern-interrupt-not-enough.rs
+++ b/ui/extern-interrupt-not-enough.rs
@@ -9,10 +9,10 @@ mod app {
struct Local {}
#[init]
- fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) {
- (Shared {}, Local {}, init::Monotonics())
+ fn init(cx: init::Context) -> (Shared, Local) {
+ (Shared {}, Local {})
}
#[task]
- fn a(_: a::Context) {}
+ async fn a(_: a::Context) {}
}