aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail/duplicate-args-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cfail/duplicate-args-2.rs')
-rw-r--r--tests/cfail/duplicate-args-2.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/cfail/duplicate-args-2.rs b/tests/cfail/duplicate-args-2.rs
new file mode 100644
index 0000000..1a196e9
--- /dev/null
+++ b/tests/cfail/duplicate-args-2.rs
@@ -0,0 +1,24 @@
+#![no_main]
+#![no_std]
+
+extern crate lm3s6965;
+extern crate panic_halt;
+extern crate rtfm;
+
+use rtfm::app;
+
+#[app(device = lm3s6965)]
+const APP: () = {
+ #[init]
+ fn init() {}
+
+ #[task(
+ priority = 1,
+ priority = 2, //~ ERROR argument appears more than once
+ )]
+ fn foo() {}
+
+ extern "C" {
+ fn UART0();
+ }
+};