aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail/priority-too-low.rs
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2019-04-21 20:20:15 +0200
committerGravatar Jorge Aparicio <jorge@japaric.io> 2019-05-01 20:49:25 +0200
commitd0aaa2a805afdda30b49b3dfdb7072f302855a79 (patch)
tree037714c3934d616eb3015b827a6bcd54d53cb52e /tests/cfail/priority-too-low.rs
parentd2fb62f729de3ad24132b69298e17193ac334df4 (diff)
downloadrtic-d0aaa2a805afdda30b49b3dfdb7072f302855a79.tar.gz
rtic-d0aaa2a805afdda30b49b3dfdb7072f302855a79.tar.zst
rtic-d0aaa2a805afdda30b49b3dfdb7072f302855a79.zip
update compile-fail tests
Diffstat (limited to 'tests/cfail/priority-too-low.rs')
-rw-r--r--tests/cfail/priority-too-low.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cfail/priority-too-low.rs b/tests/cfail/priority-too-low.rs
index 6dcbfd63..361156df 100644
--- a/tests/cfail/priority-too-low.rs
+++ b/tests/cfail/priority-too-low.rs
@@ -10,13 +10,13 @@ use rtfm::app;
#[app(device = lm3s6965)]
const APP: () = {
#[init]
- fn init() {}
+ fn init(_: init::Context) {}
// OK, this is the minimum priority that tasks can have
#[interrupt(priority = 1)]
- fn UART0() {}
+ fn UART0(_: UART0::Context) {}
// this value is too low!
#[interrupt(priority = 0)] //~ error this literal must be in the range 1...255
- fn UART1() {}
+ fn UART1(_: UART1::Context) {}
};