Fix UI test

This commit is contained in:
datdenkikniet 2023-04-16 13:35:06 +02:00
parent e4b673646a
commit 2b9e8cbf1f
2 changed files with 1 additions and 9 deletions

View file

@ -9,7 +9,7 @@ mod app {
struct Local {} struct Local {}
#[init] #[init]
fn init(cx: init::Context) -> (Shared, Local) { fn init(_cx: init::Context) -> (Shared, Local) {
(Shared {}, Local {}) (Shared {}, Local {})
} }

View file

@ -1,11 +1,3 @@
warning: unused variable: `cx`
--> ui/task-priority-too-high.rs:12:13
|
12 | fn init(cx: init::Context) -> (Shared, Local) {
| ^^ help: if this is intentional, prefix it with an underscore: `_cx`
|
= note: `#[warn(unused_variables)]` on by default
error[E0080]: evaluation of constant value failed error[E0080]: evaluation of constant value failed
--> ui/task-priority-too-high.rs:3:1 --> ui/task-priority-too-high.rs:3:1
| |